.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--bg-color);
    background-image: radial-gradient(circle at top right, rgba(250, 70, 22, 0.05) 0%, transparent 40%),
                      radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.05) 0%, transparent 40%);
}

.login-box {
    width: 100%;
    max-width: 420px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: slideUp 0.5s ease-out;
}

.login-header {
    text-align: center;
    margin-bottom: 24px;
}

.login-tabs {
    display: flex;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px;
    border-radius: 8px;
    border: 1px solid var(--card-border);
}

.login-tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.login-tab.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.login-tab:hover:not(.active) {
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
}

.login-logo {
    max-height: 60px;
    width: auto;
    border-radius: 0;
    margin-bottom: 16px;
    object-fit: contain;
}

.login-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.login-subtitle {
    font-size: 14px;
    color: var(--text-muted);
}

.login-btn {
    width: 100%;
    margin-top: 24px;
    justify-content: center;
}

.login-error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 16px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    text-align: center;
}

.hidden {
    display: none;
}
