/* CSS Document */
/* forms.css - Styles for contact forms */

.contact-form label {
    font-size: 14px;
    display: block;
    margin-top: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    font-size: 14px;
    width: 100%;
    max-width: 400px;
    padding: 5px;
    margin-top: 5px;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form .captcha-label {
    margin-top: 15px;
}

.contact-form .captcha-code {
    color: #201388;
    font-weight: bold;
}

.contact-form .submit-button {
    background-color: #201388;
    color: white;
    border: none;
    padding: 8px 20px;
    margin-top: 15px;
    cursor: pointer;
    font-size: 14px;
}

.contact-form .submit-button:hover {
    background-color: #3a2a9c;
}

.contact-address {
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        max-width: 100%;
    }
}