.pmu-ng-controls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 8px;
}

.pmu-ng-check-button {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid #0878df;
    border-radius: 8px;
    background: #0878df;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background-color .18s ease, opacity .18s ease;
}

.pmu-ng-check-button:hover,
.pmu-ng-check-button:focus-visible {
    background: #005fbd;
    border-color: #005fbd;
}

.pmu-ng-check-button:disabled {
    cursor: wait;
    opacity: .65;
}

.pmu-ng-status {
    display: inline-block;
    min-height: 20px;
    font-size: 13px;
    line-height: 1.5;
}

.pmu-ng-status.is-success {
    color: #087a39;
}

.pmu-ng-status.is-error {
    color: #c62828;
}

.pmu-ng-status.is-notice {
    color: #8a5a00;
}

.pmu-ng-autofield,
.pmu-ng-shortcode-field {
    width: 100%;
    margin-bottom: 18px;
}

.pmu-ng-autofield label,
.pmu-ng-shortcode-field label {
    display: block;
    margin-bottom: 8px;
    color: #172033;
    font-size: 14px;
    font-weight: 600;
}

.pmu-ng-autofield input,
.pmu-ng-shortcode-field input {
    box-sizing: border-box;
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid #d7deea;
    border-radius: 8px;
    background: #fff;
    color: #172033;
}

@media (max-width: 480px) {
    .pmu-ng-controls {
        align-items: stretch;
        flex-direction: column;
    }

    .pmu-ng-check-button {
        width: 100%;
    }
}

