* {
  padding: 0;
  margin: 0;
}

.modal {
  width: 100%;
  height: 100vh;
}

.modal .txt {
  width: 55%;
  height: 100vh;
  position: absolute;
  left: 0px;
  font-family: 'overpass';
  background-color: #f5f4f3;
}

.modal .txt img {
  margin: 50px 0px 50px 120px;
}

.modal .txt h1 span {
  color: #ce9797;
}

.modal .txt h1 {
  margin: 50px 0px 0px 120px;
  font-size: 60px;
}

.modal .txt p {
  margin: 10px 0px 0px 120px;
  color: #ce9797;
  width: 60%;
}

.modal .txt form input[type=email] {
  margin: 20px 0px 0px 120px;
  padding: 10px;
  width: 300px;
  border: 1px solid #f96262;
  outline: none;
  border-radius: 20px;
  height: 24px;
}

.modal .txt form input[type=email]::-webkit-input-placeholder {
  color: #f96262;
}

.modal .txt form input[type=email]:-ms-input-placeholder {
  color: #f96262;
}

.modal .txt form input[type=email]::-ms-input-placeholder {
  color: #f96262;
}

.modal .txt form input[type=email]::placeholder {
  color: #f96262;
}

.modal .txt form input[type=submit] {
  color: white;
  background-color: #f96262;
  width: 70px;
  height: 46px;
  font-size: 24px;
  border: none;
  border-radius: 20px;
  position: relative;
  left: -60px;
  top: 3px;
  cursor: pointer;
}

.modal .txt form input[type=submit]:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: .5;
}

.modal .img {
  width: 45%;
  height: 100%;
  position: absolute;
  right: 0px;
  background-image: url(../images/hero-desktop.jpg);
}

.modal .error {
  position: relative;
  top: -88px;
  right: -230px;
  display: none;
}

@media (max-width: 375px) {
  .modal {
    width: 100%;
    height: 100vh;
  }
  .modal .txt {
    width: 100%;
    height: 100vh;
  }
  .modal .txt img {
    margin: 50px 0px 50px 60px;
  }
  .modal .txt h1 {
    margin: 200px 0px 20px 0px;
    font-size: 35px;
    text-align: center;
  }
  .modal .txt p {
    margin: 10px 0px 0px 80px;
    text-align: center;
  }
  .modal .txt form input[type=email] {
    margin: 20px 0px 0px 20px;
  }
  .modal .txt form input[type=submit] {
    position: relative;
    left: 280px;
    top: -46px;
  }
  .modal .img {
    width: 100%;
    height: 30%;
    margin-top: 110px;
    background-image: url(../images/hero-mobile.jpg);
  }
}
/*# sourceMappingURL=style.css.map */