﻿/* Contenedor del CAPTCHA */
.captcha-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    transition: all 0.3s ease;
}

    /* Etiqueta del CAPTCHA */
    .captcha-container label {
        font-size: 14px;
        font-weight: 500;
        color: #555;
        width: 100%;
    }
