@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Montserrat', sans-serif;
}
.wrapper{
    overflow: hidden;
}
.site_bg{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
}
.site_bg img{
    width: 100%;
    vertical-align: bottom;
}
.container{
    width: 1540px;
    margin: 0 auto;
}
.wrapper .bg_top{
    position: absolute;
    top: 0;
    left: 0;
}
.wrapper .bg_bottom{
    position: absolute;
    bottom: 0;
    left: 0;
}
.wrapper .global_form{
    position: relative;
    padding-top: 170px;
    z-index: 2;
}
.wrapper .global_form .form_title{
    font-weight: 900;
    line-height: 46.5px;
    font-size: 31px;
    margin-bottom: 67px;
}
.global_form .form_subtitle{
    margin-bottom: 73px;
}
.global_form .form_subtitle p{
    font-size: 23px;
    font-weight: 400;
}
.global_form .form_subtitle p:first-child{
    margin-bottom: 33px;
}
.global_form .inputs{
    display: flex;
    gap: 38px;
    margin-bottom: 40px;
}
.global_form .inputs input{
    font-size: 14px;
    line-height: 20px;
    padding: 23px;
    border: 1px solid #f5f5f5;
    border-radius: 4px;
    outline: none;
    width: 324px;
}
.global_form .inputs input::placeholder{
    color: #777c80;
    font-size: 14px;
}
.global_form button{
    font-size: 17px;
    line-height: 20.4px;
    font-weight: 400;
    padding-block: 20px 15px; 
    text-align: center;
    width: 324px;
    background: #111111;
    color: #ffffff;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}
.mobile_bg{
    display: none;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 98;
}

.modal-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    z-index: 99;
    width: 300px;
    height: 100px;
    justify-content: center;
    align-items: center;
}

.close-btn {
    cursor: pointer;
    font-size: 20px;
    color: #888;
    position: absolute;
    font-size: 39px;
    color: #888;
    position: absolute;
    top: -5px;
    right: 6px;
}


@media (max-width: 1600px){
    body{
        position: relative;
    }
}
@media (max-width: 1440px){
    .container{
        width: 1366px;
        padding-bottom: 100px;
    }
    .wrapper .global_form{
        padding-top: 100px;
    }
    .wrapper .bg_top{
        top: -58px;
        left: -76px;
    }
}

@media (max-width: 1366px){
    body{
        position: relative;
    }
    .container{
        width: 1024px;
    }
    .global_form .form_subtitle p{
        font-size: 20px;
    }
    .wrapper .global_form{
        padding-top: 100px;
    }
    .wrapper .bg_top{
        top: -58px;
        left: -76px;
    }
}


@media (max-width: 1024px){
    .container{
        width: 768px;
    }
   
    .wrapper .bg_top {
        top: -21px;
        left: -59px;
        width: 35%;
    }
    .global_form .inputs input{
        width: 100%;
    }
    .global_form button{
        width: 100%;
    }
}

@media (max-width: 768px){
    .container{
        width: 576px;
    }
    .wrapper .global_form .form_title{
        line-height: 37.5px;
        font-size: 24px;
        margin-bottom: 40px;
    }
    .global_form .form_subtitle p{
        font-size: 18px;
    }
    .global_form .form_subtitle p:first-child{
        margin-bottom: 20px;
    }

}

@media (max-width: 576px){
    .container{
        width: 425px;
        max-width: 100%;
        padding-inline: 15px;
    }
    .wrapper .bg_bottom{
        width: 100%;
    }
    .wrapper .global_form .form_title br{
        display: none;
    }
    .wrapper .global_form .form_title{
        font-size: 18px;
        line-height: 33px;
    }
    .global_form .form_subtitle{
        margin-bottom: 50px;
    }
    .global_form .inputs{
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 20px;
    }
    .wrapper .bg_top{
        width: 50%;
    }
    .wrapper .global_form {
        padding-bottom: 100px;
        padding-top: 60px;
        height: 100vh;
    }
    .wrapper .bg_bottom {
        width: 57%;
    }
    .mobile_bg{
        display: flex;
    }
    .mobile_bg{
        width: 45%;
        position: absolute;
        bottom: 0;
        right: 0;
    }
    .mobile_bg img{
        width: 100%;
    }
}

@media (max-width: 425px){
    .container{
        width: 375px;
        padding-inline: 10px;
    }
}