.hzt-search-form {
    display: flex;
    align-items: center;
    max-width: 680px;
    
    overflow: hidden;
    height: 48px;

}

.hzt-search-form .hzt-search-input {
    border-radius: 5px 0 0 5px;
    border-right: none;
    flex: 1;
    font-size: 18px;
    padding-left: 20px;
    height: 48px;
    outline: none;
    color: #333;
    background: #fff;
}

.hzt-search-form .hzt-search-input::placeholder {
    color: #b0b0b0;
}

.hzt-search-form .hzt-search-input:focus {
    border-color: var(--e-global-color-accent) !important;
    box-shadow: 0 0 5px rgba(65, 95, 255, 0.5);
    z-index: 1;
    outline: none;
}

.hzt-search-form .hzt-search-btn {
    background: var(--e-global-color-accent);
    border-radius: 0 5px 5px 0;
    width: 80px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    border: none;
    outline: none;
}

.hzt-search-form .hzt-search-btn img {
    width: 18px;
    height: auto;
}

.hzt-search-form .hzt-search-btn:hover {
    background: #294afd;
}