/* --- LOGIN PAGE SPECIFIC STYLES --- */

.login-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.login-split-container {
    display: flex;
    width: 100%;
    height: 100vh;
    max-width: 1400px;
    background: var(--bg-panel);
    border-radius: 0;
}

/* Info Side */
.login-info-panel {
    flex: 1;
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border);
}

.system-status {
    color: #10b981;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.login-info-panel h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.accent-text { color: var(--accent); }

.feature-list {
    margin-top: 40px;
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-dim);
}

.feature-list li strong {
    color: var(--text-bright);
    display: block;
}

/* Form Side */
.login-form-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
}

.login-box {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-box h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    text-align: left;
}

.subtitle {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-bright);
    margin-bottom: 8px;
    font-weight: 600;
}

.input-group input {
    width: 100%;
    background: var(--bg-panel);
    border: 1px solid var(--border);
    padding: 12px;
    border-radius: 4px;
    color: white;
    font-size: 1rem;
}

.input-group input:focus {
    border-color: var(--accent);
    outline: none;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: white;
    border: none;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.2s;
}

.login-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

#message {
    margin-top: 20px;
    font-size: 0.9rem;
    text-align: center;
    min-height: 20px;
}

.help-note {
    margin-top: 40px;
    font-size: 0.85rem;
    color: var(--text-dim);
    text-align: center;
}

.help-note a { color: var(--accent); text-decoration: none; }

/* Responsive */
@media (max-width: 900px) {
    .login-info-panel { display: none; }
}