/**
 * Login Page Styles
 */

/* OTP Input styling */
#otp {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

#otp:focus {
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
}

/* Loading spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-card {
    animation: slideIn 0.5s ease-out;
}