/* Захист форм від спаму - візуальні стилі */

/* Стан кнопки під час відправки */
button[type="submit"].submitting,
input[type="submit"].submitting {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
}

/* Анімація завантаження для кнопки */
button[type="submit"].submitting::after,
input[type="submit"].submitting::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    right: 15px;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

/* Disabled стан */
button[type="submit"]:disabled,
input[type="submit"]:disabled {
    cursor: not-allowed;
}

/* Для темних кнопок */
button[type="submit"].submitting.btn-dark::after,
input[type="submit"].submitting.btn-dark::after {
    border-color: rgba(0, 0, 0, 0.3);
    border-top-color: #000;
}

