#email_form{
    display:flex;
    justify-content: center;
    align-items:center;
    .contact-form-container {
       
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        width: 100%;
        max-width: 400px;
       
    }
    
    h2 {
        margin-bottom: 20px;
        font-size: 24px;
        color: #333;
    }
    
    form label {
        display: block;
        margin-bottom: 8px;
        color: #555;
        font-size: 16px;
    }
    
    form input,
    form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
        color: #333;
    }
    
    form button {
        width: 100%;
        padding: 10px;
        background-color: #4CAF50;
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
    }
    
    form button:hover {
        background-color: #45a049;
    } 
  form{
    background-color: unset;
    box-shadow: none;
    border: none;
  }

  
}


