/* Styles specific to the contact page form */
#submission .form {
    display: grid;
    gap: 1.5rem;
    margin: 0; /* Override any other form margins */
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
}

/* Override the default button style for full width */
.form .button-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.form .button-primary:hover {
    background-color: #d95a3b; /* Consistent hover color */
}

#form-feedback {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
}


