.irtit-lead-form-wrap {
    width: 100%;
}

.irtit-lead-form {
    display: grid;
    gap: 18px;
    padding: 28px;
    border: 1px solid #d8e3ef;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

.irtit-lead-form__head h2 {
    margin: 0;
    color: #111827;
    font-size: 28px;
    line-height: 1.2;
}

.irtit-lead-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.irtit-lead-form label {
    display: grid;
    gap: 7px;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
}

.irtit-lead-form input,
.irtit-lead-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 11px 12px;
    color: #111827;
    font: inherit;
    background: #ffffff;
}

.irtit-lead-form input:focus,
.irtit-lead-form textarea:focus {
    outline: 2px solid #2563eb;
    outline-offset: 1px;
    border-color: #2563eb;
}

.irtit-lead-form button {
    justify-self: start;
    border: 0;
    border-radius: 6px;
    padding: 12px 20px;
    color: #ffffff;
    background: #2563eb;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.irtit-lead-form button:hover {
    background: #1d4ed8;
}

.irtit-lead-notice {
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 6px;
    font-weight: 600;
}

.irtit-lead-notice--success {
    color: #14532d;
    background: #dcfce7;
}

.irtit-lead-notice--error {
    color: #7f1d1d;
    background: #fee2e2;
}

.irtit-lead-hp {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

@media (max-width: 720px) {
    .irtit-lead-form {
        padding: 20px;
    }

    .irtit-lead-form__grid {
        grid-template-columns: 1fr;
    }

    .irtit-lead-form__head h2 {
        font-size: 23px;
    }
}
