

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.reg-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 100;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reg-modal__container {
    position: relative;
    max-width: 800px;
    width: 100%;
    margin: auto;
}

.reg-modal__close-button {
    position: absolute;
    top: 26px;
    right: 26px;
    z-index: 10;
    display: block;
    width: 28px;
    height: 28px;
    border: none;
    background: url('https://academy-lykova.ru/pl/fileservice/user/file/download/h/c76bda0f83c3752a40f23286ab169c22.svg') no-repeat center center;
    cursor: pointer;
}

.reg-modal__link {
    display: block;
    line-height: 0;
}

.reg-modal__image {
    width: 100%;
    height: auto;
    display: block;
}

.reg-modal__image--mobile  { display: none; }
.reg-modal__image--desktop { display: block; }

@media (max-width: 600px) {
    .reg-modal__container {
        max-width: 360px;
    }

    .reg-modal__close-button {
        top: 20px;
        right: 20px;
        width: 20px;
        height: 20px;
    }

    .reg-modal__image--desktop { display: none; }
    .reg-modal__image--mobile  { display: block; }
}
