#Logon {
    width: 85px;
    height: 45px;
    border-radius: 5px;
    background-color: #41B6E6;
    border-color: #41B6E6;
    color: #FFFFFF;
    font-size: 14px;
}
#Logon:not(.disable):hover {
    background-color: #1B88B5;
    border-color: #1B88B5;
}
#Logon:active {
    background-color: #095C7D;
    border-color: #095C7D;
}
#Logon:disabled {
    background-color: #8FD1EE;
    border-color: #8FD1EE;
}
#ForgotPw {
    font-size: 14px;
}
a {
    font-weight: 500;
}
#ForgotPw > a, a, a:hover {
    color: #41B6E6;
}
#ForgotPw > a:hover, a:hover {
    text-decoration: none;
    font-weight: bold;
}
.ValClass {
    padding: 2px 0px;
    font-weight: normal;
    color: #DC2424;
    height: 40px;
    margin-top: -40px;
    font-size: 11px;
    width: 500px;
}
#errorMessage {
    color: #DC2424;
    font-size: 11px;
}
.ErrTop {
    margin-bottom: 10px;
    font-size: 11px;
    width: 500px;
}
.ErrorLayout, .ErrorLayout2 {
    height: 25px;
    padding-top: 2px 0px;
}


label {
    margin: 0px;
    display: block;
    font-weight: normal;
}
.LoginFormContainer {
    width: 350px;
}
#contentLi {
    margin-left: auto;
    margin-right: auto;
    margin-top: 150px;
}
.horizLine {
    width: 116px;
    color: #C1C1C1;
}
.divSSO {
    padding-top: 10px;
    width: 300px;
    font-size: 14px;
}


/* fixedfooter.css */
#footer {
    position: fixed;
    text-align: center;
    width: 100%;
    bottom: 0;
    height: 40px;
    margin: 0;
    padding: 10px;
}
body::after {
    content: '';
    display: block;
    height: 40px; /* Set same as footer's height */
}
div#main {
    background-color: transparent;
}
/* ------------------ */


/* New Input styles with placeholder animation */
.input-container {
    position: relative;
}
.input-container input[type="text"], .input-container input[type="password"] {
    color: #000000;
}
.input-container input {
    padding: 0px 10px;
    font-size: 14px;
    border: 1px solid #D9D9D9;
    border-radius: 5px;
    width: 300px;
    height: 50px;
}
.input-container label {
    font-weight: normal;
    padding: 0 2px;
    font-size: 14px;
    color: #595959;
    background-color: #FFFFFF;
    position: absolute;
    pointer-events: none;
    left: 9px;
    top: 17px;
    transition: 0.4s;
}
    .input-container input:not(:placeholder-shown) + label,
    .input-container input:-webkit-autofill + label {
        font-size: 12px;
        transform: translateY(-26px);
    }

.input-container input:focus {
    border: 1px solid #41B6E6;
}
.input-container input:focus + label {
    color: #41B6E6;
    padding: 0 2px;
    font-size: 12px;
    background-color: #FFFFFF;
    transform: translateY(-26px);
}
/* ------------------ */

#togglePassword {
    cursor: pointer;
    margin-left: -25px;
    color: #C1C1C1;
}

/* Utility classes for LogIn.cshtml */
.mr50mb15 { margin-right: 50px; margin-bottom: 15px; }
.nonProdBadge { padding: 5px 8px; background-color: #fba808; font-size: 13px; width: 105px; line-height: 10px; font-weight: 450; color: #fff; margin: 10px; border-radius: 5px; text-transform: uppercase; display: flex; justify-self: center; }
.nonProdLogo { width: 20%; }
.nonProdText { margin-left: 4px; margin-top: 1px; }
.mb40mr50Center { margin-bottom: 40px; margin-right: 50px; text-align: center; }
.height70mr50 { height: 70px; margin-right: 50px; }
.pt5mt8 { padding-top: 5px; margin-top: 8px; }
.orMargin { margin: 10px 20px 0px 20px; }
.ssoLinkContainer { width: 300px; text-align: center; margin-top: 20px; }
.d-none { display: none; }