/* ==========================================================================
   SI-PROGRESS PU - Minimal & Clean Login Styling
   ========================================================================== */

:root {
    --pu-navy: #0f172a;
    --pu-blue: #1e3a8a;
    --pu-amber: #f59e0b;
    --card-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
}

body.auth-body {
    background-color: #f1f5f9;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 24px 24px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
    color: #1e293b;
    padding: 1.25rem;
}

/* Centered Clean Card */
.auth-card {
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid #e2e8f0;
    padding: 2.25rem 2rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.auth-logo-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #1e3a8a, #0f172a);
    color: #f59e0b;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
    margin-bottom: 0.85rem;
}

.auth-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.3px;
    margin-bottom: 0.2rem;
}

.auth-subtitle {
    font-size: 0.85rem;
    color: #64748b;
}

/* User Level Select Dropdown / Segment */
.form-group {
    margin-bottom: 1.15rem;
}

.form-label-custom {
    font-size: 0.82rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.35rem;
    display: block;
}

.form-select-custom,
.form-control-custom {
    width: 100%;
    padding: 0.65rem 0.85rem 0.65rem 2.5rem;
    font-size: 0.9rem;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    color: #0f172a;
    transition: all 0.2s ease;
}

.form-select-custom {
    padding-left: 2.5rem;
}

.form-select-custom:focus,
.form-control-custom:focus {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    outline: none;
}

.input-group-custom {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 0.85rem;
    z-index: 5;
    color: #64748b;
    font-size: 1.1rem;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control-custom {
    width: 100%;
    padding: 0.65rem 2.5rem 0.65rem 2.6rem;
    font-size: 0.9rem;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    color: #0f172a;
    transition: all 0.2s ease;
}

.toggle-password-btn {
    position: absolute;
    right: 0.75rem;
    z-index: 5;
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Primary Button */
.btn-login {
    width: 100%;
    padding: 0.7rem;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    background-color: #1e3a8a;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-login:hover {
    background-color: #1d4ed8;
}

/* Minimal Demo Section */
.auth-footer-demo {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    text-align: center;
}

.demo-pills {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.btn-demo-pill {
    font-size: 0.73rem;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #475569;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.15s ease;
}

.btn-demo-pill:hover {
    background: #e2e8f0;
    color: #0f172a;
}
