.funcode-zero-form {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.funcode-inline-form {
    display: block;
    width: 100%;
    margin: 0;
    font-family: "Inter Tight", Inter, Arial, sans-serif;
}

.funcode-inline-form__fields {
    display: grid;
    gap: 15px;
}

.funcode-inline-form__field {
    display: block;
    margin: 0;
}

.funcode-inline-form__field input {
    display: block;
    width: 100%;
    height: 80px;
    padding: 0 20px;
    border: 0;
    border-radius: 25px;
    outline: none;
    background: #f0f3f9;
    color: #2e3a4f;
    font: 400 18px/1.2 "Inter Tight", Inter, Arial, sans-serif;
    box-sizing: border-box;
}

.funcode-inline-form__field input::placeholder {
    color: #8897ae;
    opacity: 1;
}

.funcode-inline-form__field input:focus {
    box-shadow: 0 0 0 3px rgba(83, 221, 255, .45);
}

.funcode-inline-form__submit {
    width: 100%;
    height: 80px;
    border: 6px solid #fff;
    border-radius: 25px;
    background: #ceff32;
    color: #427300;
    font: 700 17px/1 "Inter Tight", Inter, Arial, sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    box-sizing: border-box;
}

.funcode-inline-form__submit:hover {
    border-color: #ceff32;
    background: #fff;
}

.funcode-inline-form__submit:disabled {
    cursor: wait;
    opacity: .65;
}

.funcode-inline-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #8897ae;
    font: 400 13px/1.25 "Inter Tight", Inter, Arial, sans-serif;
    cursor: pointer;
}

.funcode-inline-form__consent input {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #ceff32;
}

.funcode-inline-form__consent a {
    color: inherit;
    text-decoration: underline;
}

.funcode-form__error {
    margin-top: 10px;
    color: #b42318;
    font-size: 14px;
}

.funcode-form__success {
    padding: 30px 15px;
    color: #2e3a4f;
    font-size: 18px;
    text-align: center;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 1199px) {
    .funcode-inline-form__field input,
    .funcode-inline-form__submit {
        height: 72px;
    }
}

@media (max-width: 639px) {
    .funcode-inline-form__field input,
    .funcode-inline-form__submit {
        height: 64px;
        border-radius: 20px;
        font-size: 16px;
    }
}
