* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Josefin Sans", sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

.container {
  height: 100vh;
  display: flex;
}

.main-section {
  padding: 5% 10%;
  background: url("https://res.cloudinary.com/dfkn1kzs0/image/upload/v1589729734/bg-pattern-desktop_sya0s8.svg");
  background-size: cover;
  background-position: center;
}

.title {
  font-size: 4.5em;
  margin-top: 20%;
  margin-bottom: 5%;
  letter-spacing: 10px;
}

.title div {
  font-weight: bold;
}

.title div:first-child {
  letter-spacing: 15px;
  font-weight: 100;
  color: #ce9797;
}

.image,
.image-responsive {
  background: url("Coming Soon... (1).gif");
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top;
}

.description {
  color: #ce9797;
  padding-bottom: 28px;
  line-height: 28px;
  font-weight: bold;
}

.submit-section {
  display: flex;
  align-items: flex-end;
}

form {
  width: 100%;
}

.input-wrapper {
  display: inline-block;
  width: 100%;
}

#error-icon {
  position: relative;
  left: -30%;
  bottom: -5px;
  display: none;
}

.input {
  color: #ce9797;
  height: 55px;
  width: 80%;
  outline: none;
  border: 1px solid #ce9797;
  border-radius: 30px;
  padding: 20px;
}

.input:focus {
  border: 3px solid #ce9797;
}

::placeholder {
  color: #ce9797;
  opacity: 1; /* Firefox */
  font-family: "Josefin Sans", sans-serif;
  font-size: 16px;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #ce9797;
  font-family: "Josefin Sans", sans-serif;
  font-size: 16px;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #ce9797;
  font-family: "Josefin Sans", sans-serif;
  font-size: 16px;
}

.submit-btn {
  background: linear-gradient(
    135deg,
    rgba(248, 191, 191, 0.5),
    rgba(238, 140, 140, 0.5) 89.71%
  );
  color: white;
  height: 55px;
  width: 20%;
  outline: none;
  border: none;
  border-radius: 30px;
  padding: 20px;
  margin-left: -21%;
  font-size: 18px;
  line-height: 15px;
  box-shadow: 0 5px 12px -6px black;
  cursor: pointer;
}

.btn-wrapper {
  display: inline;
  margin-left: -20%;
}

.submit-btn:hover {
  background: #ce9797;
}

.error,
.active {
  padding: 20px;
  color: #ce9797;
}

@media screen and (min-width: 1600px) {
  .image {
    background-size: contain;
  }
}

@media screen and (min-width: 1025px) {
  .image-responsive {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  body {
    overflow-y: auto;
    overflow-x: hidden;
  }
  .image-responsive {
    display: block;
    height: 50%;
  }
  .image {
    display: none;
  }
  .main-section {
    padding: 0;
  }
  nav {
    padding: 20px;
  }
  .text-container {
    text-align: center;
  }
}