﻿/* Contact Form */
.contact-form .row {
    gap: 0;
}

.contact-form .col-md-6,
.contact-form .col-md-12,
.contact-form .col-12 {
    margin-bottom: 12px;
}

.contact-form fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.contact-form input[type="text"],
.contact-form textarea,
.contact-form .form-control,
.contact-form input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

    .contact-form input[type="text"]:focus,
    .contact-form textarea:focus {
        border-color: #002E5D;
        outline: none;
        box-shadow: 0 0 0 3px rgba(0, 46, 93, 0.1);
    }

/* Taller message box */
.contact-form textarea {
    min-height: 60px;
    resize: vertical;
}

/* Captcha section */
.captcha-section {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

    .captcha-section img {
        border-radius: 4px;
        height: 48px;
        display: block;
    }

    .captcha-section input {
        flex: 1;
        min-width: 140px;
    }

.captcha-label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

/* Submit button */
.contact-form .col-12:last-child fieldset {
    margin-top: 4px;
}

.contact-form input[type="submit"],
.contact-form .btn-submit {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background-color: #002E5D;
    color: white;
    transition: background-color 0.2s;
}

    .contact-form input[type="submit"]:hover {
        background-color: #003f82;
    }
