form .form-select,
form .form-control{
    color: #000000;
    outline:unset;
    border: 1px solid black;
    border-radius: unset;
    margin-top: auto;
    margin-bottom: auto;
}

form .form-select:disabled,
form .form-control:disabled{
    background-color: #d3d3d3 !important; /* Change background */
    color: black !important; /* Change text color */
    opacity: 1 !important; /* Override default faded look */
    border: 1px solid #000000; /* Optional: Restore border color */
}

form .form-select:focus,
form .form-control:focus{
    border: 1px solid lightgray;
    outline: 1px solid lightgray !important;
    box-shadow: 0 1px 1px rgba(197, 197, 197, 0.075) !important;
}

form .form-select::placeholder,
form .form-control::placeholder{/* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #000000;
    font-size: 0.85rem;
}


form .form-select:-ms-input-placeholder,
form .form-control:-ms-input-placeholder{ /* Internet Explorer 10-11 */
    color: #000000;
    font-size: 0.85rem;
}


form .input-group .btn{
    border: none;
    border-radius: unset;
    background: #ffffff;
    font-size: inherit;
    color: #000000;
}

form .input-group-text{
    border: unset;
    border-radius: 0;
    background: lightgray;
    font-weight: 500;
    margin: 0 5px;
}

form .input-group-text-pwd{
    background: none;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    cursor: pointer;
}

form .form-label{
    border: unset;
}