body {
  font-family: 'Inter', sans-serif;
  background-color: #fdefe8;
  /* A light grey background for the page */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  /* padding: 1rem; */
  /* Add some padding for smaller screens */
}

/* Custom styles for the radio button */
input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid #ccc;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  outline: none;
  cursor: pointer;
  position: relative;
  top: 2px;
}

input[type="radio"]:checked {
  border-color: #4285F4;
  /* Google Blue */
}

input[type="radio"]:checked::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background-color: #4285F4;
  /* Google Blue */
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form1 {
  width: 65vw;
  margin-left: 16%;
}

.form2 {
  height: 38vh;
}

@media only screen and (max-width: 1199px) {
  .form2 {
    height: 50vh;
  }
}

@media only screen and (max-width: 800px) {
  .form2 {
    height: 42vh;
  }
}

@media (max-width: 767px) {
  .form2 {
    height: 33vh;
  }
}

@media (max-width: 667px) {
  .form2 {
    height: 26vh;
  }
}

@media (max-width: 500px) {
  .form2 {
    height: 16vh;
  }
}


@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}



