.input-wrap select {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 14px;
    font: 500 12px Manrope, Arial, sans-serif;
    color: var(--ui-ink);
}

.domain-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
    max-width: 650px;
}

.domain-meta-grid .ui-field:last-child {
    grid-column: 1 / -1;
    max-width: 317px;
}

@media (max-width: 620px) {
    .domain-meta-grid {
        grid-template-columns: 1fr;
    }

    .domain-meta-grid .ui-field:last-child {
        grid-column: auto;
        max-width: none;
    }
}
