#as-wrap {
    max-width: 500px;
    margin: 20px auto;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.field {
    margin-bottom: 20px;
    position: relative;
}

.field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.field input[type="text"],
.field input:not([type]) {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.sug {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 220px;
    overflow-y: auto;
    background: #fff;
    position: absolute;
    width: 100%;
    z-index: 9999;
    display: none;
    box-sizing: border-box;
}

.sug li {
    padding: 10px;
    cursor: pointer;
}

.sug li:hover {
    background-color: #f0f0f0;
}
