/* ═══════════════════════════════════════════════════════════
   ORBIS AJANS ERP — Login Page Styles (White Theme)
   ═══════════════════════════════════════════════════════════ */

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background gradient orbs */
.login-wrapper::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(10, 167, 194, 0.12) 0%, transparent 70%);
    top: -200px; right: -200px;
    border-radius: 50%;
    animation: float-orb 8s ease-in-out infinite;
}

.login-wrapper::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(20, 207, 195, 0.08) 0%, transparent 70%);
    bottom: -150px; left: -150px;
    border-radius: 50%;
    animation: float-orb 10s ease-in-out infinite reverse;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.login-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.login-logo {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo .logo-img {
    height: 52px;
    width: auto;
    margin: 0 auto 16px;
    display: block;
}

.login-logo h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
}

.login-logo p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 4px;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form .form-control {
    padding: 12px 16px;
    font-size: 0.95rem;
}

.login-form .btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    justify-content: center;
}

.remember-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.remember-row label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.remember-row a {
    font-size: 0.85rem;
    color: var(--primary);
}
