.pmr-vfc-native-form{
    display:grid;
    grid-template-columns:repeat(2,minmax(220px,1fr));
    gap:12px;
    align-items:center;
    max-width:900px;
    margin:0 auto;
}
.pmr-vfc-native-form select,
.pmr-vfc-native-form input[type="text"],
.pmr-vfc-native-submit{
    min-height:48px;
    padding:10px 14px;
    border:1px solid #d8d8d8;
    border-radius:6px;
    background:#fff;
    width:100%;
}
.pmr-vfc-native-submit{
    border:1px solid #192C70;
    color:#192C70;
    background:#fff;
    cursor:pointer;
    transition:all .2s ease;
}
.pmr-vfc-native-submit:hover:not(:disabled),
.pmr-vfc-native-submit:focus:not(:disabled){
    border-color:#192C70;
    background:#192C70;
    color:#fff;
}
.pmr-vfc-native-submit:disabled,
.pmr-vfc-native-form select:disabled{
    opacity:.55;
    cursor:not-allowed;
}
.pmr-vfc-native-special-note{
    grid-column:1 / -1;
}
.pmr-vfc-native-special-input{
    margin-bottom:10px;
}
.pmr-vfc-native-special-text{
    width:100%;
    background:#f5f7ff;
    border:1px solid #dbe3ff;
    color:#192C70;
    padding:12px 14px;
    border-radius:6px;
    font-size:14px;
    line-height:1.7;
}
@media(max-width:768px){
    .pmr-vfc-native-form{
        grid-template-columns:1fr;
    }
}
