
.fotp-form-wrap {
    max-width: 100%;
}
.fotp-form {
    width: 100%;
}
.fotp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.fotp-field {
    margin-bottom: 20px;
}
.fotp-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
.fotp-field input,
.fotp-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    border: 1px solid #cfd5db;
    border-radius: 2px;
    background: #fff;
    font: inherit;
}
.fotp-field input:focus,
.fotp-field textarea:focus {
    outline: 2px solid rgba(0, 112, 173, 0.16);
    border-color: #0070ad;
}
.fotp-button {
    display: inline-block;
    border: 0;
    border-radius: 2px;
    padding: 12px 20px;
    background: #0070ad;
    color: #fff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}
.fotp-button:hover,
.fotp-button:focus {
    filter: brightness(0.92);
}
.fotp-tip {
    margin-top: 18px;
    font-size: 0.95em;
}
.fotp-notice {
    margin-bottom: 18px;
    padding: 12px 14px;
    border: 1px solid #d7dce1;
    background: #f7f8f9;
}
.fotp-success {
    border-color: #9cc9a7;
}
.fotp-error {
    border-color: #d7a4a4;
}
.fotp-hp {
    position: absolute !important;
    left: -99999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
@media (max-width: 680px) {
    .fotp-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
