/* =========================================
   LOGIN PAGE
   ========================================= */

.login-page {
    background: var(--bg-secondary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    width: 100%;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

/* Left Side: Form */
.login-box {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-header {
    margin-bottom: 40px;
}

.login-header h1 {
    font-size: 28px;
    color: var(--oracle-red);
    margin-bottom: 8px;
}

.login-header p {
    color: var(--text-secondary);
}

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
}

.password-toggle:hover { color: var(--text-primary); }

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    user-select: none;
}

.login-footer {
    margin-top: 30px;
    text-align: center;
}

.login-footer a {
    font-size: 14px;
    color: var(--text-secondary);
}

.login-footer a:hover {
    color: var(--oracle-red);
}

/* Right Side: Info / Marketing */
.login-info {
    background: linear-gradient(135deg, var(--oracle-red) 0%, #8a2b1f 100%);
    color: #ffffff;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.login-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.info-content {
    position: relative;
    z-index: 1;
}

.info-content h3 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.info-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 500;
}

.feature-list i {
    background: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Responsive Login */
@media (max-width: 768px) {
    .login-container {
        grid-template-columns: 1fr;
    }
    .login-info {
        display: none; /* Hide marketing side on mobile to focus on form */
    }
    .login-box {
        padding: 40px 24px;
    }
}