#form-second-block {
    background: var(--main);
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 10px;
    border-radius: 20px;
}
#form-second-block .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-left: calc((100% - 1330px) / 2);
}
#form-second-block .left-side {
    display: flex;
    flex-direction: column;
    width: 47%;
    padding: 60px 0px;
}
#form-second-block .block-title {
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 45px;
    line-height: 120%;
}
#form-second-block .desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: white;
    margin-bottom: 30px;
}
#form-second-block .desc-bot {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    margin-top: 30px;
    color: white;
}
#form-second-block .img {
    width: 53%;
    display: flex;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
}
#form-second-block .img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 1400px) {
    #form-second-block .left-side {
        padding: 0px;
    }
    #form-second-block .block-title {
        font-size: 32px;
    }
}

@media (max-width: 1200px) {
    .wrapper .form-top {
        flex-direction: column;
        align-items: center;
    }
    .wrapper .form-floating {
        width: 100%;
    }
    #form-second-block .wrapper {
        flex-direction: column;
        align-items: center;
    }
    #form-second-block .block-title {
        text-align: center;
    }
    #form-second-block .desc,
    #form-second-block .desc-bot,
    .wrapper .privacy-holder {
        text-align: center;
    }
}

@media (max-width: 996px) {
    #form-second-block .left-side,
    #form-second-block .img {
        width: 70%;
    }
}

@media (max-width: 768px) {
    #form-second-block .left-side,
    #form-second-block .img {
        width: 100%;
    }
    #form-second-block .desc-bot {
        font-size: 14px;
        margin-top: 10px;
    }
    #form-second-block .desc {
        font-size: 14px;
        margin-bottom: 10px;
    }
    #form-second-block .block-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    #form-second-block .block-title {
        font-size: 24px;
    }
    .wrapper .form .btn {
        width: fit-content;
    }
}