.lamda-zoho-form-wrap {
    --lzf-bg: transparent;
    --lzf-input-bg: #ffffff;
    --lzf-input-color: #8f8f8f;
    --lzf-button-bg: #2d93ad;
    --lzf-button-border: #2d93ad;
    --lzf-button-color: #ffffff;
    --lzf-gap: 16px;
    --lzf-radius: 0;
    max-width: 100%;
    border-radius: var(--lzf-radius);
    background: var(--lzf-bg);
    box-shadow: none;
    overflow: hidden;
}

.lamda-zoho-form-wrap--dark {
    --lzf-bg: transparent;
    --lzf-input-bg: #f1f1f1;
    --lzf-input-color: #8f8f8f;
}

.lamda-zoho-form-title {
    margin: 0 0 20px;
}

.lamda-zoho-form {
    display: grid;
    gap: var(--lzf-gap);
    direction: inherit;
}

.lamda-zoho-form-wrap--inline .lamda-zoho-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
}

.lamda-zoho-form-wrap--stacked .lamda-zoho-form {
    grid-template-columns: 1fr;
}

.lamda-zoho-form-field {
    display: block;
    min-width: 0;
}

.lamda-zoho-form-field input {
    box-sizing: border-box;
    width: 100%;
    height: 46px;
    padding: 8px 18px;
    border: unset;
    border-radius: 4px;
    background: var(--lzf-input-bg);
    color: var(--lzf-input-color);
    font-size: 1rem;
    line-height: 1.2;
    box-shadow: none;
}

.lamda-zoho-form-field input::placeholder {
    color: var(--lzf-input-color);
    opacity: 1;
}

.lamda-zoho-form-field input:focus {
    outline: none;
    border-color: #2d93ad;
    background: #ffffff;
}

.lamda-zoho-form-wrap[dir="rtl"] .lamda-zoho-form-field input {
    direction: rtl;
    text-align: right;
}

.lamda-zoho-form-wrap[dir="rtl"],
.lamda-zoho-form-wrap[dir="rtl"] .lamda-zoho-form,
.lamda-zoho-form-wrap[dir="rtl"] .lamda-zoho-form-field,
.lamda-zoho-form-wrap[dir="rtl"] .lamda-zoho-form-actions,
.lamda-zoho-form-wrap[dir="rtl"] .lamda-zoho-form-notice {
    direction: rtl;
    text-align: right;
}

.lamda-zoho-form-wrap[dir="ltr"],
.lamda-zoho-form-wrap[dir="ltr"] .lamda-zoho-form,
.lamda-zoho-form-wrap[dir="ltr"] .lamda-zoho-form-field,
.lamda-zoho-form-wrap[dir="ltr"] .lamda-zoho-form-actions,
.lamda-zoho-form-wrap[dir="ltr"] .lamda-zoho-form-notice {
    direction: ltr;
    text-align: left;
}

.lamda-zoho-form-actions {
    display: flex;
}

.lamda-zoho-form-wrap--inline .lamda-zoho-form-actions {
    grid-column: 1 / span 3;
}

.lamda-zoho-form-wrap--inline .lamda-zoho-form-submit {
    width: 30%;
    min-width: 0;
}

.lamda-zoho-form-wrap[dir="rtl"] .lamda-zoho-form-actions {
    justify-content: flex-end;
}

.lamda-zoho-form-wrap[dir="ltr"] .lamda-zoho-form-actions {
    justify-content: flex-start;
}

.lamda-zoho-form-submit {
    box-sizing: border-box;
    padding: 12px 32px;
    border-width: 1px;
    border-style: solid;
    border-color: #2d93ad;
    border-radius: 25px;
    background-color: #2d93ad;
    color: #ffffff;
    font-family: "Almoni", Sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: 0.3s ease;
}

.lamda-zoho-form-submit:hover {
    transform: scale(1.01);
    background: transparent;
    color: #464646;
}

.lamda-zoho-form-submit[disabled] {
    opacity: 0.7;
    cursor: wait;
}

.lamda-zoho-form-notice {
    margin-bottom: 16px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
}

.lamda-zoho-form-notice.is-success {
    background: #e6f6ea;
    color: #1f6b37;
}

.lamda-zoho-form-notice.is-error {
    background: #fdeaea;
    color: #8c2626;
}

@media (max-width: 767px) {

    .lamda-zoho-form-wrap--inline .lamda-zoho-form {
        grid-template-columns: 1fr;
    }

    .lamda-zoho-form-wrap--inline .lamda-zoho-form-actions {
        grid-column: auto;
    }

    .lamda-zoho-form-submit {
        width: 100%;
        min-width: 0;
    }
}
