/* assets/css/style.css - Main styles */

/* Global Styles */
body {
    background: #f0f4fb;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
}

/* Authentication Cards */
.auth-card {
    background: white;
    border-radius: 30px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.auth-card h4 {
    color: #0b1a33;
    font-weight: 600;
}

/* CAPTCHA */
.captcha-box {
    background: #f1f5f9;
    padding: 0.5rem 1.2rem;
    border-radius: 12px;
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    letter-spacing: 4px;
    font-weight: 700;
    color: #0f172a;
    user-select: none;
    min-width: 120px;
    text-align: center;
}

/* Badge Categories */
.badge-cat {
    background: #eef2ff;
    color: #1d4ed8;
    padding: 0.3rem 0.9rem;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.75rem;
    display: inline-block;
}

/* Utility Classes */
.text-success-dark { color: #16a34a; }
.text-danger-dark { color: #dc2626; }

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}