﻿.bgheader {
    background-color: darkblue;
    text-align: justify;
    color: white;
    display: block;
    padding: 5px;
    margin-left: auto;
    margin-right: auto;
    font-weight: bold;
    font-size: 19px;
}

.marginbottom7 
{
    margin-bottom: 7px;
}


.margintop7 {
    margin-top: 7px;
}

/* Initial styling for the input field */
#Password {
    border: 2px solid #ccc; /* Light gray color when not focused */
    background-color: #fff; /* White background */
}

    /* When the input field is focused */
    #Password:focus {
        border-color: #4d90fe; /* Change this to the color you prefer */
        outline: none; /* Optional: removes the default outline */
    }

/* Initial styling for the input field */
#RePassword {
    border: 2px solid #ccc; /* Light gray color when not focused */
    background-color: #fff; /* White background */
}

    /* When the input field is focused */
    #RePassword:focus {
        border-color: #4d90fe; /* Change this to the color you prefer */
        outline: none; /* Optional: removes the default outline */
    }


.txtBold {
    color: #031b4e;
    font-weight: bold;
}

input:-webkit-autofill {
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0 50px white inset !important;
    -webkit-text-fill-color: #000 !important;
}

#dtGrid {
    border: 2px solid black; /* Add a black border */
    border-collapse: collapse; /* Ensure borders do not double */
}

    #dtGrid th, #dtGrid td {
        border: 1px solid black; /* Add borders to cells */
    }