/* Success Message Box */
.success-message {
    display: none;
    align-items: flex-start;
    gap: 8px;
    background-color: #f0fdf4;
    border: 1px solid #166534;
    color: #14532d;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 20px;
}

.success-message svg {
    flex: 0 0 22px;
    width: 19px;
    height: 19px;
    margin-top: 0.5px;
}

.success-message span {
    flex: 1;
    display: block;
}



/* Button Loader Spinner Animation */
@keyframes btnSpinner {
    to {
        transform: rotate(360deg);
    }
}

.btn-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.66);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: btnSpinner 0.6s linear infinite;
    vertical-align: middle;
}

/* Prevent pointer events when disabled */
button[type="submit"]:disabled {
    pointer-events: none !important;
    cursor: not-allowed !important;
    opacity: 0.9;
}