/* API FORM STATES */

.api-form-message {
    margin: 10px 0 12px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
}

.api-form-message.error {
    color: #9f1239;
    background: #fff1f2;
    border: 1px solid #fecdd3;
}

.api-form-message.success {
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.api-field-error {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, .08) !important;
}

button.is-loading {
    opacity: .75;
    pointer-events: none;
}

.api-spinner {
    display: inline-block;
    width: 13px;
    height: 13px;
    margin-right: 5px;
    vertical-align: -2px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: apiSpinner .65s linear infinite;
}

@keyframes apiSpinner {
    to {
        transform: rotate(360deg);
    }
}

.api-form-message-home {
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
}