.form-chel{
    margin: 80px 0;
    --img-width: 325px;
}
.form-chel>.container{
    display: flex;
    align-items: center;
}
.form-chel_img-wrapper{
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    position: relative;
    margin: -15px calc((var(--img-width)*0.65) * -1) -15px 0;
}
.form-chel_img{
    width: var(--img-width);
    height: var(--img-width);
    object-fit: cover;
    border-radius: 50%;
    right: 0;
}
.form-chel_info{
    margin-bottom: 55px;
}
.form-chel_position{
    font-size: 15px;
}
.form-chel_content{
    background: var(--blue);
    border-radius: 6px;
    padding: 40px 70px 40px calc((var(--img-width)*0.65) + 50px);
    color: white;
    flex-grow: 1;
}
.form-chel_title{
    margin: 0 0 20px;
}
.form-chel_input-wrapper{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    grid-gap: 30px;
    margin-top: 30px;
}
.form-chel_socials{
    display: flex;
    flex-wrap: wrap;
    gap: .5em;
    margin: 1em 0 0 0;
}
.form-chel_socials :where(img, svg){
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.form-chel_policy{
    font-size: 15px;
}
.form-chel_policy a{
    color: inherit;
}
.form-chel_submit{
    background: #373737;
    font-size: 15px;
    justify-self: flex-end;
    align-self: flex-end;
}
.form-chel .input-icon path{
    fill: black;
}
.form-chel .on-success{
    background: var(--blue);
    color: white;
    padding: 20px 0;
    text-align: center;
}
@media (max-width: 1024px) {
    .form-chel{
        --img-width: 200px;
    }
    .form-chel .container{
        display: grid;
        grid-gap: 20px;
    }
    .form-chel_img-wrapper{
        margin: 0;
        flex-direction: column-reverse;
        align-items: center;
        gap: 1em;
        text-align: center;
    }
    .form-chel_info{
        margin-bottom: 0;
    }
    .form-chel_content{
        padding: 20px 30px;
    }
}
@media(max-width: 480px) {
    .form-chel{
        --img-width: 100px;
        margin: 60px 0;
    }
    .form-chel .container{
        padding: 40px 20px;
        background: var(--blue);
        margin: 0 var(--mobile-gap);
        width: auto;
        border-radius: 6px;
    }
    .form-chel_img-wrapper{
        flex-direction: row-reverse;
        justify-content: flex-end;
        gap: 25px;
    }
    .form-chel_content{
        padding: 0;
    }
    .form-chel_info{
        color: white;
        text-align: left;
    }
    .form-chel_title{
        font-size: 16px;
        margin: 0 0 15px 0;
    }
    .form-chel_input-wrapper{
        gap: 15px;
        margin-top: 25px;
    }
    .form-chel_policy{
        font-size: 12px;
    }
}