/* Custom Login Animations and Styles */
body {
    font-family: 'Inter', sans-serif;
}

/* Fix password input to show bullets instead of diamonds */
input[type="password"] {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
}

.bg-grid {
    background-size: 32px 32px;
}

@keyframes pulse-fade {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.status-dot-pulse {
    animation: pulse-fade 3s ease-in-out infinite;
}