/**
 * ERP Petrovalle - Cuentas
 * Estilos específicos para las vistas de perfil y autenticación.
 */

/* Etiquetas de formulario estilizadas */
.form-label-custom {
    font-weight: 600;
    font-size: 0.85rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Badge de sector */
.sector-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Avatar en edición */
.avatar-edit-container {
    position: relative;
    display: inline-block;
}

.avatar-edit-preview {
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: center;
    border: 3px solid var(--petro-primary) !important;
}

.avatar-edit-label {
    position: absolute;
    bottom: 0;
    end: 0;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border: 1px solid #dee2e6;
}

/* ── Password toggle (ojo) ── */
.password-toggle {
    position: relative;
}

.password-toggle .form-control {
    padding-right: 2.75rem;
}

.password-toggle-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 5;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.password-toggle-btn:hover {
    color: #333;
}

.password-toggle-btn .toggle-icon {
    font-size: 1.2rem;
    position: absolute;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.password-toggle-btn .toggle-icon--visible {
    transform: scale(1);
    opacity: 1;
}

.password-toggle-btn .toggle-icon--hidden {
    transform: scale(0.4);
    opacity: 0;
}

/* ── Modo oscuro ─────────────────────────────────────────────── */
[data-bs-theme="dark"] .form-label-custom { color: #94a3b8; }
[data-bs-theme="dark"] .avatar-edit-label { background: #1e293b; border-color: rgba(255,255,255,0.1); }
[data-bs-theme="dark"] .password-toggle-btn { color: #64748b; }
[data-bs-theme="dark"] .password-toggle-btn:hover { color: #e2e8f0; }

/* Código de verificación */
.input-codigo {
    letter-spacing: 5px;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    text-align: center;
}
