/* rendez-vous.css : styles spécifiques à la page de prise de rendez-vous */

@import url('/css/style.css'); /* Import des styles globaux */

.appointment-section {
  background: #ffffff;
  padding: 3rem 1rem;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.appointment-section h1 {
  color: #0047FF;
  text-align: center;
  margin-bottom: 1rem;
}

.appointment-section p {
  text-align: center;
  color: #333;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.appointment-form input,
.appointment-form textarea,
.appointment-form select {
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
}

.appointment-form button {
  background: #0047FF;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.75rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.appointment-form button:hover {
  background: #0033cc;
}

.success-message {
  display: none;
  text-align: center;
  color: #2e7d32;
  margin-top: 1rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
  .appointment-section {
    padding: 2rem 1rem;
  }
  .appointment-form input,
  .appointment-form textarea,
  .appointment-form select,
  .appointment-form button {
    font-size: 1rem;
  }
}
