body {
    min-height: 100vh;
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: 600;
}

.card-stat {
    border-left: 4px solid #0d6efd;
}

.card-stat.success {
    border-left-color: #198754;
}

.card-stat.warning {
    border-left-color: #ffc107;
}

.card-stat.danger {
    border-left-color: #dc3545;
}

#dropzone {
    border: 2px dashed #adb5bd;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    background: #fff;
    transition: border-color 0.2s, background 0.2s;
}

#dropzone.drag-over {
    border-color: #0d6efd;
    background: #e7f1ff;
}

#progressBox .wrapper {
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: #fff;
    border-radius: 0.375rem;
    border: 1px solid #dee2e6;
}

#progressBox .name {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

#progressBox .size {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.login-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #b8e4ff 0%, #c7d2fe 40%, #c4b5fd 70%, #a78bfa 100%);
    background-size: 200% 200%;
    animation: loginGradientShift 18s ease infinite;
}

@keyframes loginGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.login-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.login-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    will-change: transform;
}

.login-blob-1 {
    width: 320px;
    height: 320px;
    top: -8%;
    left: -5%;
    background: rgba(147, 197, 253, 0.7);
    animation: loginBlobFloat1 22s ease-in-out infinite;
}

.login-blob-2 {
    width: 280px;
    height: 280px;
    bottom: -10%;
    right: -5%;
    background: rgba(167, 139, 250, 0.65);
    animation: loginBlobFloat2 26s ease-in-out infinite;
}

.login-blob-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 20%;
    background: rgba(186, 230, 253, 0.55);
    animation: loginBlobFloat3 20s ease-in-out infinite;
}

@keyframes loginBlobFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 30px) scale(1.08); }
}

@keyframes loginBlobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-35px, -25px) scale(1.06); }
}

@keyframes loginBlobFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 35px) scale(0.95); }
}

.login-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    padding: 1rem;
    animation: loginCardEnter 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes loginCardEnter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-card-inner {
    border: none;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.12);
}

.login-title {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.login-card .btn-primary {
    background: linear-gradient(135deg, #60a5fa, #8b5cf6);
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login-card .btn-primary:hover {
    background: linear-gradient(135deg, #3b82f6, #7c3aed);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.35);
}

@media (prefers-reduced-motion: reduce) {
    .login-page,
    .login-blob,
    .login-card {
        animation: none;
    }

    .login-card {
        opacity: 1;
        transform: none;
    }
}

.badge-status {
    font-size: 0.75rem;
}
