html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

.loginbody {
    /*margin-bottom: 60px;*/
    background-image: url('../images/LoginBG.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.loginbox {
    margin-top: 300px;
    padding: 10px;
    max-width: 400px;
    display: block;
    /*background-color: #FFFFFF;*/ /*#F7F7F7*/
    /*box-shadow: 0px 0px 3px 3px #ff4f00;*/
    box-shadow: 0 4px 8px 0 #4e92d1, 0 6px 20px 0 #ff4f00;
    border-radius: 5px;
    margin-left: -10px;
}

.paraHeader {
    background-color: #4b49ac;
    color: white;
    font-weight: bold;
    height: 35px;
    text-align: center;
    vertical-align: middle;
    font-size: 18px;
    line-height: 35px;
    border-radius: 10px 10px 0px 0px;
}
.InfoPanel {
    border: 1px solid #4b49ac;
    background-color: #d5f1f5;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    margin-left: -16px;
    margin-right: -16px;
    padding: 0px 0px 0px 10px;
    border-radius:10px;
    padding-left:15px;
}

input[type="text"]:focus {
    background-color: #e4e8eb;
}

input[type="number"]:focus {
    background-color: #e4e8eb;
}

input[type="email"]:focus {
    background-color: #e4e8eb;
}

input[type="date"]:focus {
    background-color: #e4e8eb;
}
select:focus {
    background-color: yellow;
}


.customtable {
    border: 1px solid grey;
    width: 100%;
}

    .customtable th {
        border: 1px solid grey;
        background-color: silver;
        color: black;
        height: 40px;
        margin-left: 2px;
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .customtable td {
        border: 1px solid grey;
        height: 30px;
        margin-left: 2px;
    }

    