/* === WHITE FUTURISTIC CONTACT FORM === */

#main-wrapper {
    padding: 5rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
  }
  
  #main-wrapper .container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 150, 255, 0.1);
    box-shadow: 0 8px 40px rgba(0, 150, 255, 0.08);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(6px);
  }
  
  /* HEADER STYLING */
  #content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    color: #0077b6;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 4px rgba(0, 119, 182, 0.2);
  }
  
  #content p {
    font-size: 1rem;
    color: #0f2750;
    line-height: 1.6;
  }
  
  /* FORM ELEMENTS */
  #contact-form input[type="text"],
  #contact-form input[type="email"],
  #contact-form textarea {
    width: 100%;
    padding: 0.4rem .9rem;
    background: #f5faff;
    border: 2px solid rgba(0, 132, 255, 0.2);
    border-radius: 10px;
    color: #222;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 0.1rem; /* adjust as needed */

  }
  
  #contact-form input::placeholder,
  #contact-form textarea::placeholder {
    color: #94b9cc;
    opacity: 0.7;
  }
  
  #contact-form input:focus,
  #contact-form textarea:focus {
    outline: none;
    border-color: #033c92;
    box-shadow: 0 0 8px rgba(0, 180, 216, 0.25);
  }
  
  /* SUBMIT BUTTON */
  #contact-form input[type="submit"] {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 16px rgba(0, 180, 216, 0.15);
    margin-top: 1rem;
  }
  
  #contact-form input[type="submit"]:hover {
    background: linear-gradient(135deg, #4da8ee, #023e8a);
    box-shadow: 0 0 14px rgba(0, 180, 216, 0.2);
  }
  
  /* FORM STATUS */
  #form-status {
    color: #0077b6;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    #main-wrapper {
      padding: 3rem 1rem;
    }
  
    #main-wrapper .container {
      padding: 2rem 1.5rem;
    }
  
    #content h2 {
      font-size: 1.8rem;
    }
  }
  #contact-form input[type="text"]:hover,
  #contact-form input[type="email"]:hover,
  #contact-form textarea:hover {
    border-color: #00b4d8;
    box-shadow: 0 0 8px rgba(216, 47, 0, 0.15);
    background: #fff4f0;
    transition: all 0.3s ease;
  }
    


  @media (max-width: 768px) {
    /* Reduce bottom padding on wrapper */
    #main-wrapper {
        padding: 3rem 1rem 1.5rem; /* top right/left bottom */
    }

    /* Reduce bottom padding inside container */
    #main-wrapper .container {
        padding: 2rem 1.5rem 1.5rem; /* top right/left bottom */
    }
}
