.bls-wrap {
    margin: 0 0 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.bls-input {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    max-width: 500px;
    padding: 10px 18px;
    font-size: 15px;
    border: 2px solid #23803f;
    border-radius: 30px;
    outline: none;
    transition: box-shadow 0.2s;
    box-sizing: border-box;
    background: #fff;
}

.bls-input:focus {
    box-shadow: 0 0 0 3px rgba(35, 128, 63, 0.15);
}

.bls-loader {
    font-size: 13px;
    color: #888;
    font-style: italic;
}

.bls-no-results {
    width: 100%;
    padding: 16px 0 0;
    font-size: 15px;
    color: #555;
    margin: 0;
}

@media (max-width: 600px) {
    .bls-input {
        font-size: 14px;
        padding: 9px 14px;
        max-width: 100%;
    }
}
