.mail_title{
    width: 100%;
    height: 40vh;
    margin: -20px 0 0 0;
    background: url("../img/contact_title.jpg") top center;
    background-size: cover;
    position: relative;
}

.form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
  }

  h2 {
    text-align: center;
    color: #333;
  }

  label {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    display: block;
  }

  input, select, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    background-color: #fafafa;
  }

  input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }

  input[type="submit"]:hover {
    background-color: #45a049;
  }

  .form-message {
    font-size: 14px;
    color: red;
    text-align: center;
    margin-top: 10px;
  }