@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto-VariableFont_wdth,wght.ttf");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

:root {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  :root {
    width: auto;
  }
}

body {
  padding: 0;
  margin: 0;
  background-color: hsl(234, 29%, 20%);
}
@media (max-width: 768px) {
  body {
    background-color: hsl(0, 0%, 100%);
  }
}

main.container {
  max-width: 800px;
  background-color: hsl(0, 0%, 100%);
  display: flex;
  padding: 1.5rem;
  gap: 2rem;
  border-radius: 15px;
  align-items: center;
}
@media (max-width: 768px) {
  main.container {
    flex-direction: column-reverse;
    height: auto;
    padding: 0rem;
    border-radius: 0px;
    align-items: flex-start;
    gap: 0rem;
  }
}
main.container .main__lhs {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
main.container .main__lhs p {
  margin: 0;
}
main.container .main__lhs .lhs__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(235, 18%, 26%);
  margin: 0;
}
main.container .main__lhs .lhs_description {
  font-weight: 400;
}
main.container .main__lhs .lhs__list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
main.container .main__lhs .lhs__list .lhs__icon-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}
main.container .main__lhs form {
  margin-top: 1rem;
}
main.container .main__lhs form .initial_line {
  display: flex;
  justify-content: space-between;
}
main.container .main__lhs form .initial_line .error_message {
  font-weight: 900;
  font-size: 0.7rem;
  margin: 0;
  color: hsl(4, 100%, 67%);
}
main.container .main__lhs form .email {
  margin-bottom: 0.7rem;
}
main.container .main__lhs form .email label {
  font-weight: 900;
  font-size: 0.7rem;
}
main.container .main__lhs form input[type=email] {
  width: 90%;
  padding: 1rem;
  border: solid 1px hsl(231, 7%, 60%);
  border-radius: 5px;
}
main.container .main__lhs form input[type=email]:hover {
  cursor: pointer;
}
main.container .main__lhs form input[type=email]:focus {
  border: solid 1px hsl(235, 18%, 26%);
}
main.container .main__lhs form .invalid {
  color: hsl(4, 100%, 67%);
  border: solid 2px hsl(4, 100%, 67%) !important;
  background-color: #ffe8e6;
}
main.container .main__lhs form input::placeholder {
  color: hsl(231, 7%, 60%);
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
}
main.container .main__lhs form input[type=submit] {
  background-color: hsl(234, 29%, 20%);
  color: hsl(0, 0%, 100%);
  border: none;
  width: 100%;
  border-radius: 5px;
  padding: 1rem;
  margin-top: 1.1rem;
  font-weight: 500;
  font-size: 0.8rem;
  font-weight: 600;
}
main.container .main__lhs form input[type=submit]:hover {
  cursor: pointer;
  background-color: hsl(4, 100%, 67%);
  box-shadow: 0px 10px 30px hsl(4, 100%, 67%);
}
main.container .main__rhs {
  flex: 1;
}
main.container .main__rhs .signup__image-mobile {
  display: none;
}
@media (max-width: 768px) {
  main.container .main__rhs .signup__image-mobile {
    display: block !important;
    width: 100vw;
  }
  main.container .main__rhs .signup__image-desktop {
    display: none !important;
  }
}
main.container .main__rhs img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  :root {
    justify-content: flex-start;
    align-items: center;
  }
}

.success__container {
  max-width: 350px;
  background-color: hsl(0, 0%, 100%);
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  padding: 2rem;
  gap: 2rem;
}
@media (max-width: 768px) {
  .success__container {
    position: relative;
    max-width: 100%;
  }
}
.success__container .success__title {
  color: hsl(235, 18%, 26%);
  font-weight: 900;
  font-size: 1.5rem;
  margin: 0;
}
@media (max-width: 768px) {
  .success__container .success__title {
    max-width: 350px;
  }
}
.success__container .success__title h2 {
  margin: 0;
}
.success__container .success__description {
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .success__container .success__description {
    font-size: 1rem;
    max-width: 100%;
  }
}
.success__container .success__description .success__email {
  font-weight: 900;
}
.success__container .success__btn button {
  border: none;
  background-color: hsl(234, 29%, 20%);
  color: hsl(0, 0%, 100%);
  width: 100%;
  padding: 1rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  cursor: pointer;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .success__container .success__btn button {
    position: relative;
    bottom: -10rem;
  }
}
.success__container .success__btn button:hover {
  cursor: pointer;
  background-color: hsl(4, 100%, 67%);
  box-shadow: 0px 10px 30px hsl(4, 100%, 67%);
}

/*# sourceMappingURL=main.css.map */
