:root {
    --primary-color: #4361ee;
    --secondary-color: #4cc9f0;
    --accent-color: #f72585;
    --bg-gradient: linear-gradient(135deg, #4361ee 0%, #4cc9f0 100%);
    --card-bg: rgba(255, 255, 255, 0.95);
    --text-color: #2b2d42;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #f4f7f6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

.login-auth-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient);
}

.auth-card {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    padding: 40px;
    width: 100%;
    max-width: 450px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #3046bc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
}

.form-control {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #dee2e6;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
    border-color: var(--primary-color);
}

.dashboard-container {
    padding: 2.5rem;
}

.sidebar {
    height: 100vh;
    background: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 280px;
    left: 0;
    top: 0;
    z-index: 1000;
}

.main-content {
    margin-left: 280px;
    padding: 2rem;
}

.card {
    border-radius: 15px;
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.nav-link {
    color: #6c757d;
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 5px;
    font-weight: 500;
}

.nav-link.active {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
}

.nav-link:hover:not(.active) {
    background: #f8f9fa;
    color: var(--primary-color);
}

.badge-wa {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade {
    animation: fadeIn 0.6s ease-out forwards;
}

@media (max-width: 768px) {
    .sidebar {
        width: 0;
        transform: translateX(-100%);
    }
    .main-content {
        margin-left: 0;
    }
}
