.content {
    background-color: #fff;
    padding: 157px 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.box {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.box-left {
    flex: 0 0 420px;
    min-width: 0;
}

.box-left-t {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.box-left-t-title {
    font-family: "Futura PT", sans-serif;
    font-size: 37.0208px;
    font-weight: 600;
    line-height: 48.24px;
    color: #3d534e;
}

.box-left-t-img {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.blti-i {
    width: 22px;
    height: 22px;
}

.blti-t {
    font-family: "Futura PT", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.5104px;
    color: #3d534e;
}

.box-left-b {
    padding: 30px 24px;
    width: 100%;
    border: 1px solid #789e96;
    border-radius: 10px;
    max-height: 70vh;
    overflow-y: auto;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.box-left-b:has(.blb-item) .empty-state {
    display: none;
}

.empty-state__icon {
    margin-bottom: 16px;
    opacity: 0.6;
}

.empty-state__text {
    font-family: "Futura PT", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #3d534e;
    margin-bottom: 8px;
}

.empty-state__sub {
    font-family: "Futura PT", sans-serif;
    font-size: 14px;
    color: #789e96;
}

.blb-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 30px;
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 30px;
}

.blb-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

.blb-item-left {
    display: flex;
    gap: 24px;
    flex: 1;
    min-width: 0;
}

.blbl-l {
    flex-shrink: 0;
}

.blbl-l img {
    height: 120px;
    width: 120px;
    object-fit: cover;
    border-radius: 6px;
}

.blbl-r {
    flex: 1;
    min-width: 0;
}

.blbl-r-t {
    font-family: "Futura PT", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: #3d534e;
    margin-bottom: 16px;
    word-break: break-word;
}

.blbl-r-b {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: "Futura PT", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #789e96;
}

.blb-item-right {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    margin-left: 16px;
    margin-top: 4px;
}

.blb-item-right:hover {
    opacity: 1;
}

.blb-item-right img {
    width: 100%;
    height: 100%;
}

.box-right {
    flex: 1;
    min-width: 0;
}

.box-right-text {
    font-family: "Futura PT", sans-serif;
    font-size: 37.0208px;
    font-weight: 600;
    line-height: 48.24px;
    color: #3d534e;
    margin-bottom: 22px;
}

.box-right-form {
    background-color: #fff;
}

.brf-2 {
    padding: 36px;
    border-radius: 10px;
    border: 1px solid #789e96;
}

.brf-2-item {
    margin-bottom: 25px;
}

.form-text {
    font-family: "DM Sans", sans-serif;
    font-size: 17.9504px;
    font-weight: 400;
    line-height: 30.2896px;
    color: #3d534e;
    display: flex;
    align-items: center;
    gap: 16px;
}

.form-input {
    margin-top: 12px;
    border-radius: 8px;
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #d8d8d8;
    color: #3d534e;
    background-color: #fff;
    font-size: 16px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #789e96;
    box-shadow: 0 0 0 2px rgba(120, 158, 150, 0.15);
}

.form-input::placeholder {
    color: #b0b0b0;
}

.form-input:focus::placeholder {
    color: #ccc;
}

select.form-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23789e96' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6l6 -6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px 18px;
    padding-right: 44px;
}

.brf-2-item1 {
    margin-bottom: 25px;
}

.brf-2-item1 textarea {
    resize: vertical;
    min-height: 100px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #d8d8d8;
    padding: 18px 20px;
    font-size: 16px;
    color: #3d534e;
    transition: border-color 0.2s;
}

.brf-2-item1 textarea:focus {
    outline: none;
    border-color: #789e96;
    box-shadow: 0 0 0 2px rgba(120, 158, 150, 0.15);
}

.brf-2-item1 textarea::placeholder {
    color: #b0b0b0;
}

.brf-2-item2 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    color: #818b9c;
    font-size: 16px;
    cursor: pointer;
}

.brf-2-item2 .form-check-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin: 0;
    border: 1.5px solid #c3cdc9;
    border-radius: 5px;
    background-color: #ffffff;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    outline: none;
}

.brf-2-item2 .form-check-input:hover {
    border-color: #789e96;
}

.brf-2-item2 .form-check-input:checked {
    background-color: #789e96;
    border-color: #789e96;
}

.brf-2-item2 .form-check-input:checked::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 46%;
    width: 11px;
    height: 6px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.brf-2-item2 .form-check-label {
    cursor: pointer;
    user-select: none;
}

.brf-2-item3 {
    width: 100%;
    padding: 16px 0;
    background-color: #789e96;
    font-family: "Futura PT", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #f3f1e0;
    border: 1px solid #789e96;
    border-radius: 8px;
    cursor: pointer;
    transition:
        background-color 0.2s,
        transform 0.1s;
    text-align: center;
}

.brf-2-item3:hover {
    background-color: #5d8a81;
    border-color: #5d8a81;
}

.brf-2-item3:active {
    transform: scale(0.98);
}

@media (max-width: 1024px) {
    .content {
        padding: 120px 24px 40px;
    }

    .box {
        gap: 40px;
    }

    .box-left {
        flex: 0 0 340px;
    }

    .box-left-b {
        padding: 24px 18px;
    }

    .blbl-l img {
        height: 100px;
        width: 100px;
    }

    .brf-2 {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .content {
        padding: 100px 16px 40px;
    }

    .box {
        flex-direction: column;
        gap: 40px;
    }

    .box-left {
        flex: 1 1 auto;
        width: 100%;
    }

    .box-left-b {
        max-height: 50vh;
    }

    .empty-state {
        padding: 40px 16px;
    }

    .box-right {
        width: 100%;
    }

    .box-right-text {
        font-size: 28px;
        line-height: 1.3;
    }

    .box-left-t-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .brf-2 {
        padding: 20px;
    }

    .form-input {
        padding: 14px 16px;
    }

    .brf-2-item3 {
        padding: 14px 0;
        font-size: 16px;
    }

    .blbl-r-t {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 90px 12px 30px;
    }

    .blb-item-left {
        flex-direction: column;
        gap: 12px;
    }

    .blbl-l img {
        height: 80px;
        width: 80px;
    }

    .box-left-b {
        padding: 16px 12px;
    }

    .empty-state {
        padding: 30px 12px;
    }

    .empty-state__text {
        font-size: 17px;
    }

    .brf-2 {
        padding: 16px;
    }

    .box-left-t-title,
    .box-right-text {
        font-size: 24px;
    }
}

.brf-2-item1 .form-text {
    margin-bottom: 12px !important;
}