.appointment-wrapper {
  max-width: 1100px;
  margin: auto;
  padding: 40px;
  background: #fff;
}

.appointment-wrapper h2 {
  color: #0ea5c6;
  margin-bottom: 10px;
}

.subtitle {
  color: #6b7280;
  margin-bottom: 30px;
}

.appointment-form h3 {
  margin: 30px 0 15px;
  color: #111827;
  font-size: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

input, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 14px;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #0ea5c6;
}

.btn-submit {
  margin-top: 30px;
  background: #0ea5c6;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #0891b2;
  transform: translateY(-2px);
}
.form_section{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 40px 0px;
}
.form_section.full {
  grid-template-columns: 1fr;
}

.form_section.center {
  text-align: center;
}

.submit-btn {
  background: #0d6efd;
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
}

.submit-btn:hover {
  background: #084298;
}
.center {
    display: flex;
  justify-content: center;
  margin-top: 30px;
}
input[type="radio"]{
  width: auto;
}