.spinner-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* FORMULARIO */
.ac-custom-form.loading {
    opacity: 0.7;
    pointer-events: none;
}

.ac-custom-form {
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
}

.ac-custom-form .ac-field-group {
    display: flex;
    flex-flow: row nowrap;
    gap: 1rem;
}