.form input[type="text"],
.form input[type="date"],
.form input[type="tel"],
.form input[type="email"],
.form select,
.form textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #b3b3b3;
  background: #f5f5f5;
  font-size: 14px;
}

@media screen and (max-width: 750px) {

  .form input[type="text"],
  .form input[type="date"],
  .form input[type="tel"],
  .form input[type="email"],
  .form select,
  .form textarea {
    font-size: 3.5vw;
  }
}

.form button[type="submit"] {
  position: relative;
  display: block;
  width: 100%;
  max-width: 200px;
  background-color: #22ba4f;
  color: #fff;
  margin: 0 auto;
  padding: 20px 10px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
}

@media screen and (max-width: 750px) {
  .form button[type="submit"] {
    max-width: 51.2vw;
    padding: 5.1vw 2.5vw;
    font-size: 3.5vw;
  }
}

.form button[type="submit"]::before {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 13px;
  height: 13px;
  background: #fff;
  border-radius: 100vh;
  content: "";
  transform: translateY(-50%);
}

.form button[type="submit"]::after {
  position: absolute;
  right: 23px;
  top: 50%;
  border-width: 3px 0 3px 5px;
  border-style: solid;
  border-color: transparent transparent transparent #22ba4f;
  content: "";
  transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
  .form button[type="submit"]::before {
    right: 3.8vw;
    width: 3.3vw;
    height: 3.3vw;
  }

  .form button[type="submit"]::after {
    right: 4.6vw;
    border-width: 0.8vw 0 0.8vw 1.4vw;
  }
}

.form input[type="radio"],
.form input[type="checkbox"] {
  margin: 0 10px 0 0;
}

.form .radio-group label,
.form .checkbox-group label {
  display: inline-block;
  margin-right: 30px;
}

.required {
  display: inline-block;
  margin-left: 10px;
  padding: 1px 4px;
  background: #db2125;
  color: #fff;
  font-size: 12px;
}

.radio-group {
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.radio-group label {
  position: relative;
  padding: 0 0 0 30px;
  cursor: pointer;
}

@media screen and (max-width: 750px) {
  .radio-group label {
    padding: 0 0 0 7.6vw;
  }
}

.radio-group label::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 1px solid #b3b3b3;
  background: #f5f5f5;
  border-radius: 100%;
  transform: translateY(-50%);
  content: "";
}

@media screen and (max-width: 750px) {
  .radio-group label::before {
    width: 5.1vw;
    height: 5.1vw;
  }
}

.radio-group input[type="radio"]:checked+label::after {
  position: absolute;
  left: 4px;
  top: 50%;
  width: 12px;
  height: 12px;
  background: #b3b3b3;
  border-radius: 100%;
  transform: translateY(-50%);
  content: "";
}

@media screen and (max-width: 750px) {
  .radio-group input[type="radio"]:checked+label::after {
    left: 1vw;
    width: 3vw;
    height: 3vw;
  }
}

.radio-group input {
  display: none;
}

.form a {
  color: #007bff;
  /* Link color */
  text-decoration: underline;
  /* Underline to indicate clickability */
  font-weight: bold;
  /* Make it bold to stand out */
}

.container {
  font-family: 'Arial', sans-serif;
  max-width: 600px;
  width: 90%;
  margin: 40px auto;
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.container h1 {
  color: #333;
  margin-bottom: 20px;
  font-size: 28px;
  /* Increase font size */
}

.container p {
  color: #666;
  line-height: 1.6;
  text-align: center;
  /* Center-aligns the text */
}