/* Auth Pages - Login Styles */

.btn-login {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.btn-login .htmx-indicator {
    display: none;
}

.btn-login.htmx-request .btn-text {
    opacity: 0.7;
}

.btn-login.htmx-request .htmx-indicator {
    display: inline-flex;
}

.spinner-svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
