.form-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-modal.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.form-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.form-modal__content {
    position: relative;
    z-index: 1;
    width: min(90%, 500px);
    padding: 40px;
    background: #fff;
    text-align: center;
}

.form-modal__message {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 30px;
}

.form-modal__close {
    cursor: pointer;
    border: none;
    outline: none;
    color: white;
    height: 48px;
    border-radius: 50px;
    padding: 4px 32px;
    font-size: 16px;
    line-height: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #00C04E;
    background-image: none;
    font-family: ankchiddjgmbalc;
    font-weight: bold;
}