/* Login page specific styles */
.login-container {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(36, 36, 36, 0.95));
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-box {
    background: var(--card-background);
    width: 100%;
    max-width: 400px;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    width: 300px;
    height: auto;
    margin-bottom: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo-container h1 {
    color: var(--text-primary);
    font-size: 1.75rem;
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="password"] {
    width: 100%;
    padding: 0.75rem 1rem;
    padding-left: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.2);
}

.form-group i {
    position: absolute;
    left: 1rem;
    top: 2.3rem;
    color: var(--text-secondary);
}

.error-message {
    background: rgba(255, 68, 68, 0.1);
    border-left: 4px solid var(--error-color);
    color: var(--error-color);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
    font-size: 0.9rem;
    display: none;
}

.login-box button {
    width: 100%;
    padding: 0.875rem;
    background: var(--accent-purple);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-box button:hover {
    background: #9d3cf7;
    transform: translateY(-1px);
}

.login-box button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .login-box {
        padding: 1.5rem;
    }

    .logo {
        width: 120px;
    }
}