/* assets/css/style.css */
:root {
    --primary-color: #2563eb;
    --secondary-color: #64748b;
    --background-color: #f8fafc;
    --card-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    background-color: var(--background-color);
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    min-height: 100vh;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.navbar {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
}

.auth-container {
    max-width: 400px;
    margin: 5rem auto;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .container { padding-left: 1rem; padding-right: 1rem; }
}
