/* =====================
   FORMULARIO LOGIN
===================== */
.form-login {
    width: 100%;
    font-family: var(--font);
    margin-top: 16px; 
    padding-top: 16px; 
    border-top: 1px solid var(--border);
}

.form-login a {
    color: var(--text-muted);
    text-decoration: none;
}

.form-login a:hover {
    text-decoration: underline;
    color: var(--verde_medio);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.text-input {
    padding: 12px 0;
    border-radius: 6px;
    font-weight: 500;
    color: var(--verde_oscuro);
    border: 1px solid var(--verde_oscuro);
    font-size: 15px;
    text-align: center;
}

.text-input::placeholder {
    color: var(--text-muted);
}

.text-input:focus {
    border-color: var(--text-main);
}

.small-text {
    display: flex;
    justify-content: flex-end;
    margin: 12px 0 24px;
    font-size: 15px;
    color: var(--text-muted);
}

.small-text a {
    color: var(--text-muted);
    text-decoration: none;
}

.small-text a:hover {
    text-decoration: underline;
    color: var(--verde_medio);
}

.error-messages p{
    color: var(--dark-red)
}

/* =====================
   AJUSTES 2FA
===================== */
.backup-toggle {
    display: flex;
    justify-content: center;
    margin: 16px 0 24px;
}

.backup-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    text-align: center;
    margin-top: 15px;
}

.backup-btn:hover {
    color: var(--verde_medio);
    text-decoration: underline;
}

.backup-btn:focus {
    outline: none;
    text-decoration: underline;
}

.backup-input {
    margin-bottom: 24px;
}

/* HIDDEN */
.hidden {
    display: none;
}