/* || import styles
 *************************/
/* || base
 *************************/
/* || Fonts ('Josefin Sans')
 *************************/
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");
/* || Global Variables
 *************************/
/* || Colors
*************************/
/* || Gradients
*************************/
.sr-only {
  padding: 0;
  margin: -1px;
  width: 1px;
  height: 1px;
  border: 0;
  position: absolute;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

/* || Reset
 *************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

picture {
  display: flex;
}

/* || layout
 *************************/
/* || Body Element
 *************************/
body {
  background: linear-gradient(150.03deg, #FFFFFF 0%, #FFF4F4 84.51%);
  font-family: "Josefin Sans", sans-serif;
}

/* || Main Element
 *************************/
main {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  position: relative;
}

.coming-soon__hero-img {
  width: 100%;
  object-fit: cover;
  object-position: top;
  height: 250px;
  position: absolute;
  top: 83.94px;
  left: 0;
}
.coming-soon__details {
  margin: 397.94px 0 92.06px;
  padding: 0 31.75px;
  max-width: 445px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.coming-soon__bg-illustration {
  display: none;
}
.coming-soon__logo {
  width: 100.78px;
  position: absolute;
  top: 32px;
  left: 32px;
}
.coming-soon__title {
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 10px;
  text-align: center;
  text-transform: uppercase;
  color: #CE9898;
}
.coming-soon__title span {
  font-weight: 600;
  color: #423A3A;
}
.coming-soon__caption {
  margin-top: 16px;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.572;
  text-align: center;
  color: #CE9898;
}
.coming-soon__form {
  margin-top: 32px;
  width: 100%;
  position: relative;
}
.coming-soon__input {
  padding: 8px 24px;
  border: 1px solid #CE9898;
  width: 100%;
  height: 48px;
  border-radius: 28px;
  background: transparent;
  font-weight: 400;
  font-size: 16px;
  line-height: 2.125;
}
.coming-soon__input::placeholder {
  color: #CE9898;
  mix-blend-mode: normal;
  opacity: 0.5;
}
.coming-soon__input:focus {
  outline: none;
}
.coming-soon__input--error {
  border-color: #F96464;
}
.coming-soon__btn {
  padding: 16px 24px;
  border: none;
  width: 64px;
  height: 48px;
  border-radius: 28px;
  background: linear-gradient(135deg, #F8BFBF 0%, #EE8B8B 100%);
  box-shadow: 0px 15px 20px rgba(198, 110, 110, 0.247569);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.coming-soon__error-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 70px;
  transform: translateY(-50%);
}
.coming-soon__error {
  font-weight: 400;
  font-size: 13px;
  line-height: 215%;
  color: #F96464;
  position: absolute;
  left: 32px;
  bottom: -36px;
}

/* || Media Queries
 *************************/
@media (min-width: 768px) {
  .coming-soon__hero-img {
    height: 400px;
    object-position: 0 -80px;
  }
  .coming-soon__details {
    margin: 547.94px 0 62.06px;
    padding: 0;
  }
  .coming-soon__logo {
    left: 80px;
  }
  .coming-soon__title {
    font-size: 64px;
    letter-spacing: 17.5px;
  }
  .coming-soon__caption {
    margin-top: 32px;
    height: 102px;
    font-size: 16px;
    line-height: 2.125;
  }
  .coming-soon__input {
    height: 56px;
  }
  .coming-soon__btn {
    width: 100px;
    height: 56px;
  }
  .coming-soon__error-icon {
    right: 116px;
  }
}
@media (min-width: 1440px) {
  main {
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .coming-soon__hero-img {
    min-width: 610px;
    min-height: 100vh;
    height: 100%;
    position: unset;
    object-position: top;
  }
  .coming-soon__details {
    margin: unset;
    padding: 0 220px 0 165px;
    width: 100%;
    max-width: unset;
    align-items: flex-start;
    position: relative;
  }
  .coming-soon__details > *:not(.coming-soon__bg-illustration) {
    max-width: 445px;
  }
  .coming-soon__bg-illustration {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: unset;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
  }
  .coming-soon__logo {
    margin-top: 80px;
    width: 157.59px;
    position: unset;
  }
  .coming-soon__title {
    margin-top: 136px;
    text-align: left;
  }
  .coming-soon__caption {
    text-align: left;
  }
}