.kct-lsf-lock {
    overflow: hidden
}

.kct-lsf-button{
    background: rgb(247, 166, 0);
    border-radius: 10px;
    animation: 3s linear 0s infinite normal none running animate;
    padding: 20px;
    border-radius: 10px;
    font-family: Montserrat;
    font-weight: 600;
    border:none;
    margin-bottom: 20px;
    cursor: pointer;
    margin-top: 20px;
    color:#fff;
}
.kct-lsf-submit {
    background: #F7A600;
    border: none;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    color: #0E2A40;
    width: 100%;
    cursor: pointer;
    margin-top: 30px;
}

.kct-lsf-button:hover,
.kct-lsf-submit:hover {
    /* transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(16, 24, 32, .22);
    background: #263848 */
}

.kct-lsf-form-wrap {
    width: 100%;
    max-width: 450px;
    border: 1px solid rgba(16, 24, 32, .10);
    border-radius: 24px;
    background: #101F2A;
    box-shadow: 0 20px 60px rgba(16, 24, 32, .10);
    padding: 28px;
    color: #FFFFFF;
}

.kct-lsf-form-head {
    margin-bottom: 20px;
    margin-top: 20px;
}

.kct-lsf-eyebrow {
    display: inline-flex;
    margin-bottom: 10px;
    border: 1px solid rgba(16, 24, 32, .12);
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #5a6978;
    background: #fff
}

.kct-lsf-form-head h3 {
    margin: 0 0 8px;
    text-align: center;
    margin-bottom: 10px;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 25px;
    line-height: 130%;
    color: #F7A600;
}

.kct-lsf-form-head p {
    margin: 0;
    font-size: 14px;
    line-height: 100%;
    color:#FFFFFF;
    text-align: center;
}

.kct-lsf-form {
    display: grid;
    /* gap: 14px */
}

.kct-lsf-grid {
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.kct-lsf-field {
    display: grid;
    gap: 7px
}

.kct-lsf-field span {
    font-family: Montserrat;
    font-weight: 300;
    font-size: 18px;
    line-height: 30px;
    color: #FFFFFF;
}

.kct-lsf-field input,
.kct-lsf-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(16, 24, 32, .14);
    background: #fff;
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease;
    border-radius: 10px;
    display: flex;
    padding: 10px 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    font-family: Montserrat;
}

.kct-lsf-field textarea {
    resize: vertical;
    min-height: 116px
}

.kct-lsf-field input:focus,
.kct-lsf-field textarea:focus {
    border-color: #101820;
    box-shadow: 0 0 0 4px rgba(16, 24, 32, .08)
}

.kct-lsf-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    line-height: 100%;
    color:#fff;
}

.kct-lsf-check input {
    margin-top: 2px
}

.kct-lsf-error {
    min-height: 15px;
    color: #b42318;
    font-size: 12px;
    font-style: normal
}

.kct-lsf-status {
    min-height: 20px;
    font-size: 14px;
    font-weight: 700
}

.kct-lsf-status.is-success {
    color: #087443
}

.kct-lsf-status.is-error {
    color: #b42318
}

.kct-lsf-status.is-loading {
    color: #5a6978
}

.kct-lsf-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.kct-lsf-modal[aria-hidden="false"] {
    display: flex
}

.kct-lsf-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 11, 16, .62);
    backdrop-filter: blur(10px)
}

.kct-lsf-modal__dialog {
    position: relative;
    /* width: min(680px, 100%); */
    max-height: calc(100vh - 40px);
    overflow: auto
}

.kct-lsf-modal__close {
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 0;
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer;
    color: #F7A600;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(16, 24, 32, .16)
}

@media (max-width:640px) {
    .kct-lsf-grid {
        grid-template-columns: 1fr
    }

    .kct-lsf-form-wrap {
        padding: 22px;
        border-radius: 20px
    }

    .kct-lsf-button,
    .kct-lsf-submit {
        width: 100%;
        justify-content: center
    }
}