:root {
    --main-color: #3fbbc0;
    --background-color: #f4f4f4;
    --white: #ffffff;
    --text-color: #333;
    --border-color: #ccc;
  }
  

  
  .appointmentform {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    transition: all 0.3s ease;
  }
  
  .appointmentform h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--main-color);
  }
  
  .appointmentform label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: var(--text-color);
  }
  
  .appointmentform input,
  .appointmentform select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    box-sizing: border-box;
  }
  
  .appointmentform button {
    width: 100%;
    padding: 10px;
    background-color: var(--main-color);
    border: none;
    color: var(--white);
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .appointmentform button:hover {
    background-color: #34969c;
  }
  
  @media (max-width: 480px) {
    .appointment-form {
      padding: 15px;
    }
  
    .appointmentform h2 {
      font-size: 20px;
    }
  
    .appointmentform button {
      font-size: 14px;
    }
  }
  