/* Input Fields */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group label {
    position: absolute;
    top: 14px !important;
    left: 32px !important;
    font-size: 14px !important;
    color: #6c757d !important;
    transition: all 0.3s ease;
    pointer-events: none;
}

/*input:focus + label, input:not(:placeholder-shown) + label,*/
.form-control:focus + label, .form-control:not(:placeholder-shown) + label,
.custom-select:focus + label, .custom-select:not(:placeholder-shown) + label {
    top: -10px !important;
    left: 28px !important;
    font-size: 12px !important;
    color: #007bff !important;
    background: white;
    padding: 0 5px !important;
}

.form-control, .custom-select {
    width: 100%;
    border: 2px solid #ddd !important;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

input:focus, .form-control:focus, .custom-select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

input[type=text], input[type=password], input[type=tel], input[type=email], select, .form-control, .custom-select {
    padding: .375rem .75rem;
}

input[type=text], input[type=password], input[type=tel], input[type=number], input[type=email], select, .custom-select {
    height: calc(3rem + 2px);
}


/* start search box */
.search-list {
    float: left;
    list-style: none;
    margin-top: -1px;
    padding: 0;
    width: 100%;
    position: absolute;
    z-index: 999;
}

.search-list li {
    padding: 10px;
    background: #ffffff;
    border-bottom: #ced4da 1px solid;
    border-left: #ced4da 1px solid;
    border-right: #ced4da 1px solid;
}

.search-list li:hover {
    background: #b0bcf6;
    color: white;
    cursor: pointer;
}