/* Styling for the Contact Page */
.contact-container {
    padding: 20px;
    color: darkorange;
    text-align: center;
}

.contact-error {
    color: red;
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    gap: 10px;
    margin: 0 auto;
    text-align: left;
}

.contact-form label {
    margin-bottom: 5px;
}

.contact-form input, 
.contact-form textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form button {
    padding: 10px;
    background-color: darkorange;
    border: none;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
    color: white;
    border-radius: 4px;
}

.contact-form button:hover {
    background-color: #e67e00;
}
