/* assets/css/style.css */
body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #1e293b;
}

.login-body {
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card {
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-primary {
    background: linear-gradient(to right, #4f46e5, #3b82f6);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(to right, #4338ca, #2563eb);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e2e8f0;
}

.file-icon {
    font-size: 2.5rem;
    background: -webkit-linear-gradient(#3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.file-item {
    transition: background-color 0.2s ease;
}
.file-item:hover {
    background-color: #f1f5f9;
}

.badge-custom {
    background-color: #e0e7ff;
    color: #4338ca;
    font-weight: 600;
}
