/* Make modal larger and centered */
.modal-lg {
  max-width: 640px;
}

.appointment-modal-bg {
  background: linear-gradient(110deg, #fff 70%, #f9eaf5 100%);
  border-radius: 26px;
  box-shadow: 0 12px 38px #e7009833, 0 2px 12px #f9eaf588;
  padding-bottom: 10px;
}

/* Modal title: bigger, gradient, spaced */
.apt-title {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  margin-bottom: 0;
  background: linear-gradient(90deg,#E70098 50%,#191919 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.apt-logo {
  height: 36px;
  margin-right: 12px;
}

/* Form fields: more contrast, animation, spacing */
.apt-input,
.apt-message,
.form-control,
.form-select {
  background: #fff;
  color: #232323;
  border: 2px solid #E70098;
  border-radius: 14px;
  font-size: 1.06rem;
  box-shadow: 0 2px 10px #e7009811;
  padding: 0.8rem 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.apt-input:focus,
.form-control:focus,
.form-select:focus,
.apt-message:focus {
  border-color: #E70098;
  box-shadow: 0 0 0 3px #E7009818;
}

.apt-message {
  min-height: 48px;
}

/* Button: big, bold, gradient, animated */
.apt-btn {
  background: linear-gradient(90deg,#E70098 60%,#fff 100%);
  color: #191919;
  font-weight: bold;
  font-size: 1.25rem;
  border-radius: 20px;
  margin-top: 12px;
  padding: 1rem 0;
  box-shadow: 0 6px 18px #E7009833;
  letter-spacing: 1.1px;
  transition: background 0.3s, color 0.3s;
  text-transform: uppercase;
}

.apt-btn:hover {
  background: linear-gradient(90deg,#fff 20%, #E70098 80%);
  color: black;
}

/* Spacing for modal rows */
.row.g-3 > .col-md-6 {
  padding-right: 8px;
  padding-left: 8px;
}

/* Responsive improvements */
@media (max-width: 700px) {
  .modal-lg { max-width: 96vw; height: auto;}
  .appointment-modal-bg { border-radius: 16px; }
  .apt-title { font-size: 1.0rem;}
  .apt-logo { height: 26px;}
}
