.debts {
    position: relative;
}
.form-debts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.debtContent {
    padding: 0 35px;
}

.content-leads {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px;
    background: #fff;;
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
}
.lead-close{
    top: 20px;
}
.formGroup {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.input {
    width: 100%;
    font-size: 16px;
    outline: none;
    color: #b9bdc4 !important;
    border-radius: 10px;
    padding: 10px 20px;
    background: #f0f4f8;
}
.title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 500;
    line-height: 120%;
    color: #000;
    margin-bottom: 24px;
}
.label {
    font-size: 12px;
    color: #b9bdc4;
}
.formGroupTitle {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.formGroupTitle {
    color: #000000;
    font-size: 16px;
    margin-bottom: 8px;
}

.radioGroup {
    display: flex;
    gap: 20px;
}

.radio {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radioInput {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radioLabel {
    padding-left: 26px;
    position: relative;
    font-size: 12px;
    color: #000000;
}

.radioLabel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border: 1px solid #ccc;
    border-radius: 50%;
    background: #fff;
    transition: border-color 0.2s;
}

.radioInput:checked + .radioLabel::before {
    border-color: var(--green);
    background-color: #fff;
}

.radioLabel::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 4px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
}

.radioInput:checked + .radioLabel::after {
    opacity: 1;
}
.expert-debts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.expertInfo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.expertAvatar {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
}
.expertInfoText {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.expertName {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}
.expertInfoText {
    color: #b9bdc4;
}
.expertButton {
    font-size: 14px;
    font-weight: 700;
    background: #b9bdc4;
    border-radius: 8px;
    padding: 6px 10px;
}
@media (max-width: 600px) {
    .content {
        padding: 0 5px;
    }
    .debtContent {
        padding: 0 20px;
    }
}
