.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient(135deg, #181A1B 0%, #1a1f2e 50%, #222430 100%);
    position: relative;
    overflow: hidden;
}

.login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(120, 119, 198, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(99, 178, 229, 0.06) 0%, transparent 60%);
    z-index: 0;
}

.login-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem 1.5rem;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.login-header {
    text-align: center;
    margin-bottom: 1rem;
}

.login-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.3;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.85rem;
    cursor: pointer;
    margin: 0;
}

.remember-me input[type="checkbox"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.remember-me input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #0d6efd 0%, #474DAC 100%);
    border-color: #0d6efd;
}

.remember-me input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: -1px;
    left: 2px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.forgot-link {
    color: #60a5fa !important;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.forgot-link:hover {
    color: #93c5fd !important;
    text-decoration: none;
}

.login-btn {
    background: #0d6efd;
    border: none;
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
    box-shadow: 0 1px 4px rgba(13, 110, 253, 0.1);
}

.login-btn:hover {
    background: #0b5ed7;
    box-shadow: 0 2px 6px rgba(13, 110, 253, 0.15);
}

.login-btn:active {
    transform: translateY(0);
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.login-footer p {
    color: rgba(255, 255, 255, 0.6) !important;
    margin: 0;
    font-size: 0.85rem;
}

.register-link {
    color: #60a5fa !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.register-link:hover {
    color: #93c5fd !important;
    text-decoration: none;
}

@media (max-width: 480px) {
    .login-container {
        padding: 0.5rem;
    }
    
    .login-card {
        margin: 0.5rem;
        padding: 1.5rem 1.2rem;
        border-radius: 12px;
    }
    
    .login-title {
        font-size: 1.4rem;
    }
    
    .login-btn {
        padding: 0.45rem 0.7rem;
    }
    
    .login-form {
        gap: 0.8rem;
    }
    
    .form-options {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
    }
}