/* layout */
/* colors */
/* typography */
body {
  font-family: "Josefin Sans", sans-serif;
  color: #413a3a;
  margin: 0;
}

.container {
  display: grid;
  grid-template-columns: 60% 40%;
  background: url("../../../images/bg-pattern-desktop.svg") no-repeat center;
  background-size: cover;
  height: 100vh;
}

.logo {
  width: 9em;
  margin: 4em 0 4em 0;
}

.block-image-mobile {
  display: none;
}

.block-content {
  padding: 0 8em 0 8em;
}

.title {
  text-transform: uppercase;
  letter-spacing: 10px;
  font-size: calc(4 * 1em);
  margin-bottom: 0;
}

.light {
  font-weight: 300;
  color: #ce9797;
}

.bold {
  font-weight: 600;
  color: #413a3a;
}

.block-email {
  width: 26em;
}

.text {
  color: #ce9797;
  margin: 1em 0 2.5em 0;
}

.form-email {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.input-email {
  padding: 1.3em 2em 1.3em 2em;
  border-radius: 100px;
  border: 1px solid #ce9797;
  width: 100%;
}

::placeholder {
  color: #ce9797;
}

.btn-email {
  border-radius: 100px;
  border-style: none;
  background-image: linear-gradient(135deg, #f8bfbf, #ee8c8c);
  padding: 1.1em;
  width: 7em;
  position: absolute;
  right: 0;
  cursor: pointer;
}

.btn-email:active {
  background-image: linear-gradient(135deg, white, #fff5f5);
  box-shadow: #ccc 0 0 10px;
}

.error-icon {
  right: 6.5em;
  position: absolute;
  align-self: center;
}

.error-msg {
  color: #f96262;
  font-size: 13px;
  padding-left: 2em;
}

.block-image-desktop {
  background: url("../../../images/hero-desktop.jpg") no-repeat center;
  background-size: cover;
}

.footer {
  margin-top: 2em;
}

.attribution {
  font-size: 11px;
  text-align: center;
}

.attribution a {
  color: #3e52a3;
}

@media screen and (max-width: 900px) {
  .container {
    display: flex;
    justify-content: center;
    height: 100%;
  }

  .logo {
    width: 7em;
    margin: 2em 0 2em 0;
    padding-left: 2em;
  }

  .block-image-mobile {
    display: block;
    background: url("../../../images/hero-mobile.jpg") no-repeat center;
    background-size: cover;
    height: 300px;
  }

  .block-image-desktop {
    display: none;
  }

  .block-content {
    padding: 0;
  }

  .title {
    font-size: calc(3 * 1em);
    margin-top: 1em;
    text-align: center;
  }

  .text {
    text-align: center;
    margin: 2em 2em;
  }

  .form-email {
    margin: 2em 2em;
  }

  .footer {
    margin-top: 5em;
  }
}

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