/* FORM */

/* Form container styles */
.contact-form {
    max-width: 600px;
    margin: 50px auto; /* Center the form on the page */
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(255, 200, 0, 0.571);
    border:1px solid #ffc800;    
  }
  
  /* Label styling */
  .contact-form label {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    display: block;
  }
  
  /* Input and textarea styling */
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
  }
  
  .contact-form input[type="text"]:focus,
  .contact-form input[type="email"]:focus,
  .contact-form textarea:focus {
    border-color: #ffc800; /* Highlight color on focus */
    outline: none;
  }
  
  /* Button styling */
  .contact-form button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #f7f7f7;
    border: none;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #000000;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button[type="submit"]:hover {
    background-color: #eeeeee;
  }
  
  /* Responsive styling */
  @media (max-width: 768px) {
    .contact-form {
      margin: 20px;
      padding: 15px;
    }
  
    .contact-form label {
      font-size: 14px;
    }
  
    .contact-form button[type="submit"] {
      font-size: 14px;
      padding: 10px;
    }
  }
  