* {
  margin: 0;
  padding: 0;
}
body {
  padding: 20px;
  background-image: url(/images/bg-intro-desktop.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: hsl(0, 100%, 74%);
}
.container {
  display: flex;
  height: 90vh;
  align-items: center;
  margin: auto;
  width: 80%;
  justify-content: space-between;
}
.left-column {
  /* border: 2px solid black; */
  width: 45%;
  padding: 20px;
}
h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}
.left-txt {
  color: white;
}
.top-right {
  background-color: hsl(248, 32%, 49%);
  text-align: center;
  padding: 10px 0;
  margin-bottom: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.675);
}
.right-txt {
  color: white;
}
.bold-right {
  font-weight: bold;
}
.right-container {
  /* border: 2px solid red; */
  width: 45%;
}
.right-column {
  background: rgb(207, 227, 245);
  padding: 2rem;
  border-radius: 10px;
}
form {
  width: 80%;
  margin: auto;
}

input {
  width: 100%;
  height: 40px;
  text-indent: 20px;
  outline: none;
  border-radius: 10px;
  border: 0.5px solid grey;
}

.error {
  color: red;
  display: none;
}

.thankyou {
  display: none;
}
button {
  width: 100%;
  text-align: center;
  padding: 10px 0;
  background-color: hsl(154, 59%, 51%);
  color: white;
  margin-top: 10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.field {
  margin-top: 10px;
}
.terms {
  font-size: 10px;
  text-align: center;
  color: grey;
  margin-top: 5px;
}
.terms-2 {
  color: red;
  font-weight: bold;
}
@media only screen and (max-width: 500px) {
  body {
    background-image: url(./images/bg-intro-mobile.png);
    padding: 5px 0;
  }
  .container {
    flex-direction: column;
  }
  .left-column {
    width: 100%;
  }
  .right-container {
    width: 100%;
  }
  form {
    width: 95%;
  }
}
