*,
body,
html {
  margin: 0;
  font-family: "Roboto", sans-serif;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #36384d;
}

.sign-in-preview {
  display: grid;
  grid-template-columns: repeat(2, auto);
  width: 58rem;
  background-color: #fff;
  border-radius: 2.1875em;
}

.main-view {
  margin: 6.0625rem 4rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  padding-bottom: 1.5rem;
  color: #242742;
}

p,
li {
  font-size: 1rem;
  line-height: 150%;
}

.sub-heading {
  padding-bottom: 1.5rem;
}

ul {
  padding: 0;
}

li {
  list-style: none;
  display: flex;
  padding-bottom: 10px;
}
li:last-child {
  padding-bottom: 2.5rem;
}

.checkmark-img {
  justify-self: center;
  padding-right: 1rem;
}

.form-container {
  display: flex;
  flex-direction: column;
}

.email-heading {
  font-weight: 700;
  color: #242742;
  font-size: 0.75rem;
  line-height: 150%;
  padding-bottom: 0.5rem;
}

.email-input {
  border-radius: 0.5rem;
  border-color: hsla(243, 27%, 13%, 0.25);
  height: 3.5rem;
  margin-bottom: 1.5rem;
}

.email-input:hover {
  cursor: pointer;
}

.cta-button {
  border-style: none;
  background-color: #242742;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  border-radius: 0.5rem;
  height: 3.5rem;
}

.cta-button:hover {
  cursor: pointer;
  background: rgb(255, 106, 58);
  background: linear-gradient(
    215deg,
    rgba(255, 106, 58, 1) 0%,
    rgba(255, 82, 120, 1) 100%
  );
}

input::placeholder {
  padding: 1rem 1.5rem;
}

/* Section - 2 */

.img-section {
  margin: 1.5rem 1.5rem 1.5rem 0;
}

.display-none {
  display: none;
}

/* SUCCESS MESSAGE */

.success-msg {
  width: 31.5rem;
  height: 32.5rem;
  background-color: white;
  border-radius: 2.25rem;
}

.success-container {
  padding: 3rem 4rem 4.625rem 4rem;
}

.thank-you-msg {
  padding: 2.5rem 0 1.5rem 0;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 100%;
}

.thank-you-paragraph {
  color: #242742;
  font-size: 1rem;
  line-height: 150%;
}

.dismiss-btn {
  margin-top: 2rem;
  width: 100%;
  height: 3.5rem;
  border: none;
  background-color: #242742;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  line-height: 150%;
  border-radius: 0.5rem;
}

.dismiss-btn:hover {
  cursor: pointer;
  background: rgb(255, 106, 58);
  background: linear-gradient(
    215deg,
    rgba(255, 106, 58, 1) 0%,
    rgba(255, 82, 120, 1) 100%
  );
}

.success-msg-display {
  display: none;
}
