/* styles.css */

/* body {
 
    margin: 0;
    padding: 0;
    
    justify-content: center;
    align-items: center;
    height: 100vh;
} */
/* body div{
    display: flex;
    justify-content: center;
    align-items: center;
    
} */
.contact-form-container {
    max-width: 600px;
    min-height: 60vh;
    margin: 0 auto;
    padding: 20px;
    background-color: #11415a;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
}

.contact-form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
    color: white;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    color: white;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
}

textarea {
    resize: vertical;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: transparent;
    border: 2px solid white;
    
    border-radius: 4px;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: white;
    color: #11415a;
}
