@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

.form-container {
  max-width: 650px;
  margin: 30px auto;
  background: #fff;
  padding: 30px 40px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.appointment-form .form-row .field {
  flex: 1;
  height: 100%;
}

label {
  display: block;
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 4px;
  font-family: "Inter", sans-serif;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-size: 14px;
}

.appointment-form textarea {
  resize: vertical;
  font-size: 0.9rem;
  height: 100%;
}

.options {
  margin-bottom: 15px;
}

.options label {
  display: flex;
  font-size: 14px;
  margin-bottom: 6px;
  align-items: center;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 5px;
}

.checkbox-columns {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 15px;
}

.checkbox-group label {
  display: flex;
  font-size: 14px;
  margin-bottom: 6px;
  align-items: baseline;
  gap: 5px;
}

.submit-btn {
  background-color: #60bb46ff;
  border: 0px none #ffffff;
  border-radius: 5px;
  padding: 12px 50px;
  white-space: normal;
  width: 100%;
  box-shadow: 0px 0px 0px 0px #ffffff;
  cursor: pointer;
  font-size: 100%;
  font-weight: 600;
  min-width: 85px;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}

.appointment-form input {
  width: max-content !important;
  font-family: "Inter", sans-serif !important;
  background-color: #ffffffff !important;
  color: #2c3345ff !important;
  border: 1px solid #acacacff !important;
  border: 1px solid #acacacff !important;
  border-radius: 5px !important;
  padding: 8px 15px 8px 15px !important;
  box-shadow: 0px 0px 0px 0px #ffffff;
  font-size: 12px;
  font-weight: 300;
  background-clip: inherit !important;
}

.appointment-form input:not(input[type="checkbox"], input[type="radio"]) {
  width: 100% !important;
}

.appointment-form input[type="checkbox"] {
  min-height: 100%;
}

.appointment-form .radio-group {
  max-height: 25px;
}

.appointment-form .error {
  color: #cb3837;
  display: block;
  width: 100%;
  margin-top: 10px;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
}
.appointment-form select option:hover {
  background: #188bf633 !important;
  color: #188bf6 !important;
}