.registration-offer-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    max-height: 100vh;
    padding: 2em;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 10;
}

.registration-offer-modal_active {
    display: block;
}

.registration-offer-modal-body {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 960px;
    max-height: 100%;
    margin-right: auto;
    margin-left: auto;
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(76, 86, 86, 0.15);
}

.registration-offer-modal-main {
    padding: 2em;
    overflow-y: auto;
}

.registration-offer-modal-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
    padding: 2em;
}

@media (min-width: 576px) {
    .registration-offer-modal-buttons {
        flex-direction: row;
        justify-content: center;
    }
}
