/* ══════════════════════════════════════════════════════
   Auth theme — matches landing page (welcome.blade.php)
   Palette: dark charcoal #252628 → dark green #03451c
   ══════════════════════════════════════════════════════ */

/* ── Fondo ───────────────────────────────────────────── */
body.login-page,
body.register-page {
    background: linear-gradient(135deg, #252628 5%, #03451c 100%) !important;
    background-attachment: fixed;
}

/* ── Card principal: efecto glass ────────────────────── */
.login-box .card,
.register-box .card {
    background: rgba(255, 255, 255, 0.07) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5) !important;
    border-radius: 18px !important;
    overflow: hidden;
}

/* Acento verde en el borde superior de la card */
.login-box .card.card-outline.card-primary,
.register-box .card.card-outline.card-primary {
    border-top: 3px solid #1d9819 !important;
}

/* ── Logo / título ───────────────────────────────────── */
.login-logo a,
.register-logo a {
    color: #ffffff !important;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ── Cuerpo de la card ───────────────────────────────── */
.login-box .card-body,
.register-box .card-body {
    background: transparent !important;
}

.login-box-msg,
.register-box-msg {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* ── Inputs ───────────────────────────────────────────── */
.login-box .form-control,
.register-box .form-control {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    color: #fff !important;
}

.login-box .form-control::placeholder,
.register-box .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.login-box .form-control:focus,
.register-box .form-control:focus {
    background: rgba(255, 255, 255, 0.13) !important;
    border-color: #1d9819 !important;
    box-shadow: 0 0 0 0.15rem rgba(29, 152, 25, 0.35) !important;
    color: #fff !important;
}

.login-box .form-control.is-invalid,
.register-box .form-control.is-invalid {
    border-color: #e74c3c !important;
}

/* ── Iconos del input-group ──────────────────────────── */
.login-box .input-group-text,
.register-box .input-group-text {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    color: rgba(255, 255, 255, 0.55) !important;
}

/* ── Selects: opciones en modo oscuro ────────────────── */
.register-box select.form-control {
    color: #fff !important;
}

.register-box select.form-control option {
    background: #1b2a20;
    color: #fff;
}

/* ── Custom file input (foto de perfil) ──────────────── */
.register-box .custom-file-label {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

.register-box .custom-file-label::after {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    color: #fff !important;
    content: "Elegir";
}

/* ── Botón primario — gradiente verde de la landing ──── */
.login-box .btn-primary,
.register-box .btn-primary {
    background: linear-gradient(45deg, #1d9819, #729e1b) !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 600;
    letter-spacing: 0.4px;
    box-shadow: 0 8px 24px rgba(29, 152, 25, 0.45) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.login-box .btn-primary:hover,
.register-box .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(73, 238, 36, 0.5) !important;
    background: linear-gradient(45deg, #22b01d, #84b820) !important;
    color: #fff !important;
}

/* ── Checkbox "Recuérdame" ───────────────────────────── */
.login-box .icheck-primary > label {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* ── Footer de la card y enlaces ─────────────────────── */
.login-box .card-footer,
.register-box .card-footer {
    background: rgba(255, 255, 255, 0.04) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.login-box .card-footer a,
.register-box .card-footer a,
.login-box p a,
.register-box p a {
    color: #5de050 !important;
    font-weight: 500;
    transition: color 0.2s ease;
}

.login-box .card-footer a:hover,
.register-box .card-footer a:hover,
.login-box p a:hover,
.register-box p a:hover {
    color: #85ee78 !important;
    text-decoration: none;
}
