/* ========================================
   CAPTCHA STYLES
   ======================================== */

/* Captcha Section */
.captcha-section {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 10px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(192, 192, 192, 0.3);
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.captcha-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.captcha-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.captcha-image {
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.captcha-image:hover {
    border-color: #00569D;
}

.captcha-refresh-btn {
    margin-top: 15px;
    background: linear-gradient(135deg, #00569D, #003d73);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 86, 157, 0.3);
}

.captcha-refresh-btn:hover {
    background: linear-gradient(135deg, #003d73, #00569D);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 86, 157, 0.4);
}

.captcha-refresh-btn:active {
    transform: translateY(0);
}

.captcha-input-wrapper {
    display: flex;
    flex-direction: column;
}

.form-hint-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef2 100%);
    border-left: 3px solid #00569D;
    border-radius: 6px;
    margin-top: 10px;
}

.hint-icon {
    color: #00569D;
    font-size: 15px;
    margin-top: 1px;
}

.form-hint {
    color: #718096;
    font-size: 12px;
    line-height: 1.6;
}

.form-hint strong {
    color: #00569D;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .captcha-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .captcha-section {
        padding: 30px 20px;
    }

    .captcha-image-wrapper,
    .captcha-input-wrapper {
        width: 100%;
    }
}
