.klo-simple-form-wrap {
    width: 100%;
    max-width: 760px;
}

.klo-simple-form {
    display: block;
}

.klo-form-row {
    display: grid;
    gap: 18px;
}

.klo-form-row-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.klo-form-row-address {
    grid-template-columns: minmax(0, 2fr) minmax(120px, .8fr) minmax(110px, .7fr);
}

.klo-form-field {
    margin: 0 0 18px;
}

.klo-form-field label {
    display: block;
    margin: 0 0 7px;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
}

.klo-optional {
    font-size: .9em;
    font-weight: 400;
    opacity: .72;
}

.klo-simple-form input[type="text"],
.klo-simple-form input[type="email"] {
    width: 100%;
    min-height: 48px;
    padding: 10px 13px;
    border: 1px solid #c8cdd2;
    border-radius: 6px;
    background: #fff;
    color: #1d2327;
    font: inherit;
    line-height: 1.4;
    box-sizing: border-box;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.klo-simple-form input[type="text"]:focus,
.klo-simple-form input[type="email"]:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
    outline: none;
}

.klo-form-actions {
    margin-top: 4px;
}

.klo-form-submit {
    min-height: 46px;
    padding: 11px 24px;
    border: 0;
    border-radius: 6px;
    background: #1f5e7a;
    color: #fff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s ease, transform .15s ease;
}

.klo-form-submit:hover,
.klo-form-submit:focus {
    background: #2a708e;
}

.klo-form-submit:active {
    transform: translateY(1px);
}

.klo-form-message {
    margin: 0 0 20px;
    padding: 14px 16px;
    border-radius: 6px;
    border: 1px solid transparent;
}

.klo-form-message ul {
    margin: 8px 0 0 20px;
}

.klo-form-success {
    background: #edf7ed;
    border-color: #b9dfba;
}

.klo-form-error {
    background: #fff3f3;
    border-color: #e6b8b8;
}

.klo-honeypot {
    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: 640px) {
    .klo-form-row-two,
    .klo-form-row-address {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .klo-simple-form input[type="text"],
    .klo-simple-form input[type="email"] {
        min-height: 46px;
    }

    .klo-form-submit {
        width: 100%;
    }
}
