.main{
    width: 100%;
    height: 1080px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#info{
    width: 852px;
    height: 651px;
    background-image: url('/static/main/image/reg_image.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#info p{
    width: 650px;
    font-size: 64px;
    font-weight: 400;
}

#block-form{
    width: 889px;
    height: 950px;
    border: 1px solid black;
    border-radius: 99px;

    display: flex;
    flex-direction: column;
}

#block-form h1{
    margin-top: 7%;
    font-size: 48px;
    font-weight: 400;
    text-align: center;
}

form{
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

#block-form input{
    background-color: #F5F4FD;
    font-size: 32px;
    font-weight: 400;
    border-radius: 22px;
    width: 826px;
    height: 77px;
    border: none;
    padding-left: 30px;
}

#block-form #btn{
    font-size: 40px;
    font-weight: 400;
    width: 358px;
    height: 107px;
    border-radius: 36px;
    background-color: #B2B2B21C;
    box-shadow: 5px 3px 3px rgb(125, 125, 125);
}

@media (max-width: 1600px) {
    .main{
        width: 100%;
        height: 780px;
        /* height: 70%; */

    }
    
    #info{
        width: 600px;
        height: 450px;
    }
    
    #info p{
        width: 480px;
        font-size: 45px;
        font-weight: 400;
    }
    
    #block-form{
        width: 600px;
        height: 700px;
        border-radius: 80px;
    }
    
    #block-form h1{
        margin-top: 7%;
        font-size: 48px;
        font-weight: 400;
    }
    
    form{
        margin-top: 100px;
        gap: 50px;
    }
    
    #block-form input{
        font-size: 24px;
        font-weight: 400;
        border-radius: 12px;
        width: 550px;
        height: 40px;
        padding-left: 30px;
    }
    
    #block-form #btn{
        font-size: 24px;
        font-weight: 400;
        width: 200px;
        height: 70px;
        border-radius: 24px;
        text-align: center;
    }
}