.login-container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--darker-bg) 0%, #0c0c0c 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(232, 65, 24, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 197, 49, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.logo i {
    font-size: 3rem;
    color: var(--primary-red);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.logo h1 {
    font-size: 3rem;
    background: linear-gradient(to right, var(--primary-red), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(232, 65, 24, 0.3);
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.login-box {
    display: flex;
    max-width: 1000px;
    width: 100%;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(232, 65, 24, 0.3);
    z-index: 1;
}

.login-form {
    flex: 1;
    padding: 40px;
    background: var(--dark-bg);
}

.login-form h2 {
    color: var(--primary-red);
    margin-bottom: 10px;
    font-size: 2rem;
}

.form-description {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.form-group label i {
    color: var(--primary-red);
    width: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--medium-bg);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(232, 65, 24, 0.05);
    box-shadow: 0 0 0 3px rgba(232, 65, 24, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox input {
    width: auto;
}

.checkbox span {
    color: var(--text-muted);
}

.forgot-link {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-link:hover {
    text-decoration: underline;
}

.login-button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.login-button i {
    margin-right: 10px;
}

.login-status {
    min-height: 30px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-size: 0.9rem;
}

.login-info {
    flex: 1;
    padding: 40px;
    background: var(--medium-bg);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.login-info h3 {
    color: var(--accent-yellow);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-info ul {
    list-style: none;
    margin-bottom: 40px;
}

.login-info li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.login-info li i {
    color: var(--primary-red);
    width: 20px;
}

.system-status {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(232, 65, 24, 0.2);
}

.system-status h4 {
    color: var(--text-color);
    margin-bottom: 15px;
}

.status-indicators {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.status-indicator.active {
    color: var(--success);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-muted);
}

.status-indicator.active .status-dot {
    background-color: var(--success);
    box-shadow: 0 0 10px var(--success);
}

.login-footer {
    margin-top: 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    z-index: 1;
}

.warning {
    color: var(--accent-yellow);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .login-box {
        flex-direction: column;
    }
    
    .login-info {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .logo h1 {
        font-size: 2rem;
    }
}