/* AISearchLab Forms — Public CSS */
.aisl-form-wrap { width: 100%; }
.aisl-form { display: flex; flex-direction: column; gap: 14px; }
.aisl-form-group { display: flex; flex-direction: column; gap: 6px; }
.aisl-form-group label { font-size: 13px; font-weight: 600; color: #0a0a0a; }
.aisl-required { color: #dc2626; }
.aisl-form-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    font-size: 13px;
    font-family: inherit;
    background: #fff;
    color: #0a0a0a;
    box-sizing: border-box;
    transition: border-color .15s;
}
.aisl-form-input:focus { border-color: #0a0a0a; outline: none; }
.aisl-form-input.aisl-input--error { border-color: #dc2626; }
.aisl-form-error { font-size: 11px; color: #dc2626; min-height: 14px; }
.aisl-form-btn {
    width: 100%;
    padding: 12px;
    background: #0a0a0a;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background .15s, opacity .15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.aisl-form-btn:hover:not(:disabled) { background: #333; }
.aisl-form-btn:disabled { opacity: .6; cursor: not-allowed; }
.aisl-form-status {
    padding: 10px 14px;
    border-radius: 3px;
    font-size: 13px;
    display: none;
}
.aisl-form-status.success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; display: block; }
.aisl-form-status.error   { background: #fef2f2; border: 1px solid #fca5a5; color: #dc2626; display: block; }
.aisl-form-note { font-size: 12px; color: #888; text-align: center; margin: 0; }
.aisl-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: aisl-form-spin .65s linear infinite;
}
@keyframes aisl-form-spin { to { transform: rotate(360deg); } }
