.leasing-lead__panel {
    padding: 25px 30px 25px 25px;
    border-radius: 18px;
    background: linear-gradient(177.81deg, #0e6be2 4.163%, #1d4e8c 46.445%, #244369 95.837%);
    box-shadow: 2px 5px 8.6px rgba(0, 0, 0, .11);
    color: #fff;
}

.leasing-lead__grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: stretch;
}

.leasing-lead__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-content: start;
}

.leasing-lead__side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}

.leasing-lead__field input[type="text"],
.leasing-lead__field input[type="tel"],
.leasing-lead__field input[type="email"],
.leasing-lead__field textarea,
.leasing-lead__field select {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(155, 200, 250, .32);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .135));
    box-shadow: 2px 5px 8.6px rgba(0, 0, 0, .11);
    font-family: inherit;
    font-size: 16px;
    color: #fff;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.leasing-lead__field textarea {
    height: 120px;
    padding: 14px 16px;
    resize: vertical;
}

.leasing-lead__field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"), linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .135));
    background-repeat: no-repeat, no-repeat;
    background-position: right 16px center, 0 0;
}

.leasing-lead__field input::placeholder,
.leasing-lead__field textarea::placeholder {
    color: rgba(255, 255, 255, .85);
    font-size: 16px;
}

.leasing-lead__field input:focus,
.leasing-lead__field textarea:focus,
.leasing-lead__field select:focus {
    border-color: rgba(255, 255, 255, .7);
    box-shadow: 2px 5px 8.6px rgba(0, 0, 0, .11), 0 0 0 2px rgba(255, 255, 255, .35);
    outline: none;
}

.leasing-lead__field select option {
    color: #636363;
    font-size: 16px;
}

.leasing-lead__field--error input:not(:focus),
.leasing-lead__field--error textarea:not(:focus),
.leasing-lead__field--error select:not(:focus) {
    box-shadow: 0 0 0 2px #ec6910;
}

.leasing-lead__field-caption {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
}

.leasing-lead__error {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.3;
    color: #ec6910;
}

.leasing-lead__consent {
    display: flex;
    gap: 10px;
    font-size: 12px;
    line-height: 1.34;
}

.leasing-lead__consent input {
    position: relative;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border: 1.5px solid rgba(255, 255, 255, .6);
    border-radius: 4px;
    background: transparent;
    outline: none;
    transition: background-color .2s ease, border-color .2s ease;
}

.leasing-lead__consent input:checked {
    background: #ec6910;
    border-color: #ec6910;
}

.leasing-lead__consent input:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: -1px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.leasing-lead a {
    color: #fff;
    text-decoration: underline;
}

.leasing-lead a:hover {
    color: #ec6910;
}

.leasing-lead__note {
    margin: 0;
    padding: 14px 0;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, .92);
}

.leasing-lead__panel :disabled {
    opacity: 1;
    cursor: not-allowed;
    -webkit-text-fill-color: currentColor;
}

.leasing-lead__panel .leasing-btn[disabled] {
    opacity: 1;
    cursor: not-allowed;
}

.leasing-lead__phone {
    font-weight: 700;
    color: #fff;
    text-decoration: underline;
}

.leasing-lead__phone:hover {
    color: #fff;
}

.leasing-lead__panel :focus-visible {
    outline-color: #fff;
}

@media (max-width: 992px) {
    .leasing-lead__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 576px) {
    .leasing-lead__panel {
        padding: 20px 16px;
    }

    .leasing-lead__fields {
        grid-template-columns: 1fr;
    }
}