/* input.css */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
}

.input {
    background-color: #010201;
    border: none;
    width: 300px;
    height: 50px;
    border-radius: 10px;
    color: white;
    padding: 0 50px;
    font-size: 16px;
    outline: none;
}

.input::placeholder {
    color: #c0b9c0;
}

.filter-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.filter-icon svg {
    width: 24px;
    height: 24px;
    stroke: #d6d6e6;
}

button {
    margin-top: 20px;
    padding: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
