.form-block .wrapper {
    display: flex;
    gap: 30px;
    position: relative;
    background: var(--background-secondary);
    border-radius: 10px;
    overflow: hidden;
    padding: 30px;
}
.form-block .wrapper:before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: radial-gradient(44.51% 95.97% at 103.43% 112.08%, rgba(251, 195, 74, 0.15) 0%, rgba(251, 195, 74, 0) 73%);
    pointer-events: none;
}
.form-block .block-left-side {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 33%;
}
.form-block .form-holder {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 33%;
    background: var(--third);
    padding: 30px;
    align-items: center;
    border-radius: 10px;
}
.form-block .block-right-side {
    display: flex;
    flex-direction: column;
    width: 33%;
    position: relative;
}
.form-block .main-title {
    margin-bottom: 20px;
}
.form-block .block-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--main-text-primary);
    margin-bottom: 10px;
    max-width: 430px;
}
.form-block .info-holder {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}
.form-block .info-holder p {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--main-text-primary);
    margin-bottom: 10px;
}
.form-block .info-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
.form-block .info-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
}
.form-block .info-icon img,
.form-block .info-icon svg {
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}
.form-block .info-right-side {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.form-block .info-value {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
}
.form-block .socs {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 5px;
}
.form-block .form-title {
    font-weight: 500;
    font-size: 32px;
    line-height: 100%;
    text-align: center;
    color: var(--primary);
    margin-bottom: 10px;
}
.form-block .form-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: var(--main-text-primary);
    margin-bottom: 25px;
}
.form-block .form {
    width: 100%;
}
.form-block .btn {
    width: 100%;
    margin-top: 10px;
}
.form-block .form .privacy-policy {
    margin-top: 5px;
}
.form-block .step-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 20px;
}
.form-block .steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-block .step-item {
    display: flex;
    gap: 15px;
}
.form-block .step-count {
    background: var(--background-thirdly);
    border-radius: 10px;
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: var(--primary);
}
.form-block .step-right-side {
    display: flex;
    flex-direction: column;
}
.form-block .step-name {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: var(--primary);
}
.form-block .step-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--main-text-primary);
    margin-top: 5px;
}

@media (max-width: 1400px) {
    .form-block .wrapper {
        padding: 10px;
        gap: 10px;
    }
}

@media (max-width: 1200px) {
    .form-block .form-holder {
        padding: 10px;
    }
    .form-block .form-title {
        font-size: 24px;
        margin-bottom: 5px;
    }
    .form-block .form-desc {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .form-block .main-title {
        margin-bottom: 5px;
    }
    .form-block .info-item {
        margin-bottom: 5px;
    }
    .form-block .step-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .form-block .step-item {
        gap: 5px;
    }
    .form-block .step-count {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }
    .form-block .step-name {
        font-size: 16px;
    }
    .form-block .step-desc {
        font-size: 14px;
        margin-top: unset;
    }
    .form-block .block-desc {
        font-size: 14px;
    }
}

@media (max-width: 996px) {
    .form-block .form .privacy-policy {
        margin-top: unset;
    }
    .form-block .info-value {
        font-size: 16px;
    }
    .form-block .info-icon {
        width: 16px;
        height: 16px;
        min-width: 16px;
    }
    .form-block .wrapper {
        flex-wrap: wrap;
    }
    .form-block .block-left-side {
        width: 100%;
    }
    .form-block .form-holder,
    .form-block .block-right-side {
        width: calc((100% - 10px) / 2);
    }
    .form-block .block-desc {
        max-width: unset;
    }
}

@media (max-width: 600px) {
    .form-block .form-holder,
    .form-block .block-right-side {
        width: 100%;
    }
}