html {
    line-height: 1;
    -webkit-text-size-adjust: 100%;
    height: 100%;
}

*,*:before,*:after {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #EBEDF0;
    box-sizing: border-box;
    font-family: VK Sans Display, TT Commons, sans-serif;
    height: 100%;
}

.main {
    min-height: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(370px, 609px));
    justify-content: center;
    align-items: center;
    justify-items: center;
    background-size: cover;
    background-position: 50%;
    height: 100%;
}

.logo {
    width: 444px;
    height: 48px;
}

.img {
    width: 100%;
    height: 100%;
}

.block {
    width: 416px;
    max-width: 416px;
    border-radius: 48px;
    padding: 91px 48px;
    margin: 20px 0;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.img_block {
    background-color: #00103D0A;
    padding: 16px;
    border-radius: 24px;
    height: 88px;
}

.text {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.header {
    font-weight: 600;
    font-size: 23px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
}

.subheader {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.15px;
    vertical-align: middle;
    text-align: center;
    color: #58636F;

}

@media (max-width: 790px) {
    .wrapper {
        display: flex;
        flex-direction: column;
        padding: 16px;
    }
    .main {
    }

    .block {
        width: 100%;
        max-width: 343px;
        padding: 24px;
        gap: 16px;
    }
    .logo {
        margin: 0 auto;
        height: 24px;
        width: max-content;
    }
}