.listmonk_form_container {
    margin-bottom: 2rem;
}

.listmonk_stock_msg {
    color: #182a77;
    font-family: 'Alergia Condensed';
    font-size: clamp(1.6rem, calc(1.6rem + ((1vw - 0.02rem) * 3.3333)), 1.8rem);
    font-style: italic;
    margin-top: 0px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.listmonk_form {
    display: block;
}

.listmonk_email {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

#submit.listmonk_btn[type="submit"] {
    text-align: center;
    padding: 1rem 2.5rem;
    background-color: var(--primary);
    position: relative;
    color: var(--white);
}

#submit.listmonk_btn[type="submit"]:hover {
    background-color: var(--secondary);
}

.listmonk_btn--loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}

.listmonk_success {
    background-color: #0F7B99;
    padding: 0.5rem 1rem;
    color: white;
    line-height: 0;
    border-radius: 8px;
    display: none;
}

.listmonk_error {
    background-color: #ed4848;
    padding: 0.5rem 1rem;
    color: white;
    line-height: 0;
    border-radius: 8px;
    display: none;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}