/* ====== Estrutura principal ====== */
.auth-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.auth-full-page-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.auth-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.w-90 {
    width: 90% !important
}

.w-95 {
    width: 95% !important
}


.auth-footer {
    padding: 1rem 0;
    color: #6c757d;
    font-size: 0.875rem;
    background-color: transparent;
}

/* ====== Componentes visuais ====== */
.auth-form-container {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.auth-logo {
    margin-bottom: 2rem;
}

/* ====== Títulos e textos ====== */
.auth-title {
    color: #111827;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;
}

.auth-subtitle {
    color: #6B7280;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.5;
}

.text-center {
    text-align: center;
}

/* ====== Labels e inputs ====== */
.form-label {
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.form-control-lg {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 12px;
}

/* ====== Campo de senha com botão ====== */
.auth-pass-inputgroup .form-control {
    border-right: 0;
}

.auth-pass-inputgroup button {
    border-left: 0;
    background-color: transparent;
}

/* ====== Input de verificação (código) ====== */
.input-verificao {
    width: 48px !important;
    height: 58px !important;
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.input-verificao:focus {
    border-color: #407BFF;
    box-shadow: 0 0 0 0.2rem rgba(64, 123, 255, 0.25);
    outline: none;
}

/* ====== Placeholder ====== */
#login_credential::placeholder {
    font-size: 0.92rem;
    color: #999;
}

/* ====== Estilos dos canais de envio e opções ====== */
#optionsContainer .form-check-input,
#channelOptionsList .form-check-input {
    border-color: #3B82F6;
}

#optionsContainer .form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.35em;
}

#channelOptionsList .form-check-input {
    width: 1.5em;
    height: 1.5em;
    margin-top: 0.2em;
}

#optionsContainer .form-check-input:checked,
#channelOptionsList .form-check-input:checked {
    background-color: #3B82F6;
    border-color: #3B82F6;
}

#optionsContainer .form-check-label {
    font-weight: 500;
    color: #1F2937;
}

#channelOptionsList .form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#optionsContainer .small a {
    color: #3B82F6;
    font-weight: 500;
    text-decoration: none;
}

#optionsContainer .small a:hover {
    text-decoration: underline;
}

#optionsContainer .btn-primary {
    background-color: #0063F7;
    border-color: #0063F7;
    font-weight: 600;
    font-size: 1rem;
}

#optionsContainer .btn-primary:hover {
    background-color: #0053d8;
    border-color: #0053d8;
}

#optionsContainer .text-muted {
    color: #6B7280 !important;
}

#optionsContainer h5 {
    color: #111827;
}

/* Checkbox moderno com efeito suave */
.form-check-input {
    width: 1.3em;
    height: 1.3em;
    margin-top: 0.25em;
    border: 2px solid #ccc;
    border-radius: 0.35em;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.form-check-label {
    margin-left: 0.5em;
    font-weight: 500;
    cursor: pointer;
}

.retorna-login {
    background: transparent;
    border: none;
    color: #0d6efd; /* ou use sua variável --bs-primary */
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    cursor: pointer;
    transition: none;
}

.retorna-login:hover,
.retorna-login:focus,
.retorna-login:active {
    background: transparent !important;
    color: #0d6efd !important;
    text-decoration: none !important;
    box-shadow: none !important;
    outline: none !important;
}
