/* contact.css */

/* Reset basic styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  /* Body styling */
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom right, #e0f7fa, #ffffff); /* Light cyan to white gradient */
    color: #004d40; /* Dark teal for text */
    line-height: 1.6;
  }
  
  /* Heading styling */
  h1 {
    text-align: center;
    margin-top: 50px;
    font-size: 2.5em;
    color: #00695c; /* Teal color for the heading */
  }
  
  /* Form container */
  form {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 121, 107, 0.2); /* Teal shadow */
  }
  
  /* Form elements */
  label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #00796b; /* Medium teal for labels */
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="url"],
  textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #80cbc4; /* Light teal border */
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  input[type="url"]:focus,
  textarea:focus {
    border-color: #004d40; /* Darker teal on focus */
    box-shadow: 0 0 5px rgba(0, 77, 64, 0.5); /* Teal glow */
    outline: none;
  }
  
  /* Submit button */
  button[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: #009688; /* Vibrant teal */
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button[type="submit"]:hover {
    background-color: #00796b; /* Darker teal on hover */
  }
  
  /* Placeholder styling */
  ::placeholder {
    color: #80cbc4; /* Light teal for placeholders */
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    form {
      padding: 20px;
    }
  
    h1 {
      font-size: 2em;
      margin-top: 30px;
    }
  }
  