.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: 32px;
}

.login-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(250, 70, 22, 0.2);
}

.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;
}
