.auth-page {
    background: #f6f7f9;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.auth-card {
    text-align: center;
}

.subtitle {
    color: #666;
    margin-bottom: 20px; 
}

.alert.error {
    background: #ffe5e5;
    color: #900;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.code-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.code-digit {
    width: 42px;
    height: 52px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.code-digit:focus {
    border-color: #5b7cfa;
    outline: none;
}

.auth-header {
    background-color: #FEFEFE;
    padding: 0px;
    padding-bottom: 10px;
    box-shadow: none;
}

.form-group small {
    color: #888;
    font-size: 0.75em;
}

/* 1. Centralização Horizontal Absoluta */
.captcha-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /*margin: 20px 0; /* Espaçamento equilibrado */
}

/* 2. Wrapper para Arredondamento e Máscara */
.captcha-responsive-wrapper {
    width: 300px;
    height: 74px;
    overflow: hidden;
    border-radius: 20px; /* Bordas arredondadas modernas */
    border: 1px solid #d3d3d3;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 3. Ajuste para telas menores que 350px (Mobile Estreito) */
@media screen and (max-width: 350px) {
    .captcha-responsive-wrapper {
        transform: scale(0.85); /* Reduz o tamanho sem quebrar o iframe */
        transform-origin: center center;
        width: 260px; /* Ajusta o container para o novo tamanho escalado */
        height: 66px;
    }
}

/* Estilização extra para o iframe do Google */
.g-recaptcha iframe {
    border-radius: 20px;
}
.auth-header {
    padding-bottom: 0px;
}