.form label {
  display: block;
  margin: 15px 0 10px;
  color: #333;
}

.form .radio-group label {
  margin: 0;
}

.form input[type="text"],
.form input[type="date"],
.form input[type="tel"],
.form input[type="email"],
.form select,
.form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 24px;
}

@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.2vw;
  }
}

.form button[type="submit"] {
  position: relative;
  display: block;
  width: 100%;
  background-color: #ff6000;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 28px;
}

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

.form button[type="submit"]::after {
  position: absolute;
  right: 40px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-width: 2px;
  border-style: solid;
  border-color: #fff #fff transparent transparent;
  content: "";
  transform: rotate(45deg) translateY(-50%);
}

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

.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 {
  color: #ff6666;
  /* Lighter red color */
  margin-left: 5px;
}

.radio-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.radio-group label {
  position: relative;
  padding: 0 0 0 40px;
}

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

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

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

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

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

.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 */
}