/* Custom Search Bar */
.sepay-custom-search-box {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.sepay-search-form {
    width: 100%;
}

.sepay-search-input-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #2d6bcf;
    border-radius: 50px;
    padding-left: 16px;
    height: 42px;
    transition: box-shadow 0.3s ease;
}


.sepay-search-input-wrapper:focus-within {
    box-shadow: 0 2px 8px rgba(45, 107, 207, 0.2);
}


.sepay-search-input-wrapper .sepay-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 13px;
    color: #333;
    padding: 0;
    line-height: 1.4;
    min-height: 100%;
    box-shadow: none;
}

.sepay-search-input-wrapper .sepay-search-input::placeholder {
    color: #999;
}

.sepay-search-button {
    border: none;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
    margin-left: 8px;
    white-space: nowrap;
    height: 42px;
    background: #fff;
    color: #2d6bcf;
    box-shadow: none;
    border: 1px solid #2d6bcf;
    border-right: none;
}

.sepay-search-button:hover {
    background: #2d6bcf;
}

.sepay-search-button i {
    font-size: 12px;
}

.sepay-search-button span {
    font-size: 13px;
}

@media (max-width: 991px) {
    .sepay-custom-search-box {
        max-width: 100%;
    }
    
    .sepay-search-button span {
        display: none;
    }
}

