.search-container {
    display: flex;
    align-items: center;
    background-color: #f1f4f9; /* Background color of the input */
    border: 1px solid #ccc;
    border-radius: 25px; /* Rounded corners */
    padding: 10px 20px;
    width: 300px; /* Width of the search form */
}

.search-container i {
    color: #333; /* Color of the icon */
    margin-right: 10px; /* Space between icon and text */
}

.search-container input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    width: 100%;
}