@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

body {
    margin: 0;
    padding: 0;
    height: 100vh;

    font-family: "Nunito Sans", sans-serif;;

    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url('../Image/Login/login_backdrop.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.auth-box-login, .auth-box-reset, .auth-box-resetaction {
    background-color: rgba(255, 255, 255, 0.55);
    background-attachment: fixed;
    border-radius: 10px;
    position: relative;
    text-align: center;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    padding: 10px;

    display: flex;
    flex-direction: column;
}

@media (max-width: 450px) or (max-height: 450px) {
    .auth-box-login, .auth-box-reset, .auth-box-resetaction {
        height: 100%;
        width: 100%;
        padding: 0;
        border-radius: 0;
        max-width: 100% !important;
    }
}

@media (max-height: 450px) {
    .auth-box-login, .auth-box-reset, .auth-box-resetaction {
        flex-direction: row;
        flex-grow: 1;
    }

    .auth-box-login > div, .auth-box-reset > div, .auth-box-resetaction > div {
        margin: auto !important;
    }
}

.auth-box-login {
    max-width: 450px;
}

.auth-box-reset {
    max-width: 400px;
}

.auth-box-resetaction {
    max-width: 600px;
}


#logo {
    margin-bottom: 5px;
    padding: 10px 0;
}

#logo img {
    /**fix the IE7 vertical-alignment middle problem**/
    /*     margin-top: expression(this.offsetHeight < this.parentNode.offsetHeight ? parseInt((this.parentNode.offsetHeight - this.offsetHeight) / 2) + "px" : "0"); */
    text-align: center;
}

div ul, div li {
    border: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

div li {
    clear: both;
    list-style: none;
    padding-bottom: 30px;
}

div li.button {
    margin-top: 8px;
    padding-bottom: 0;
}

/*for link and normal message*/
div li.link, div li.linkEx, div li.msg, div li.error {
    font-size: 10px;
    font-weight: bold;
    padding-bottom: 5px;
    text-align: center;
}

/*for error message*/
div li.error {
    color: red;
    font-size: 11px;

}

.errorMsgBox {
    margin: auto;
    width: 80%;
    border: 2px solid #781010;
    padding-top: 3px;
    padding-bottom: 5px;
}

/*for normal message (remove padding on <p>)*/
div li.msg p {
    padding: 0;
    margin: 2px;
}


div li.link a:link, li.linkEx a:link, p.msg a:link {
    color: #193831;
}

div li.link a:visited, li.linkEx a:visited, p.msg a:visited {
    color: #193831;
}

div li.link a:hover, li.linkEx a:hover, p.msg a:hover {
    /*color: #33CC33;*/
}

div li input[type=text], div li input[type=password] {
    float: left;
}

div label {
    color: #193831;
    float: left;
    font-weight: bold;
    font-size: 12px;
    width: 120px;
}

div li.link {
    font-size: 10px;
    padding-bottom: 5px;
    text-align: center;
}

#logoEx {
    margin-bottom: 5px;
    padding: 10px 0;
}


div .labelEx {
    color: #193831;
    float: left;
    font-weight: bold;
    font-size: 12px;
    padding-left: 30px;
    width: 120px;
}

div li.linkEx {
    font-size: 10px;
    padding-bottom: 10px;
    text-align: center;
}

div li.SVLinks {
    padding-bottom: 0;
}

#msg-top {
    background: #003160;
    height: 20px !important;
    height: 40px;
    padding: 10px 0;
    width: 600px;
    margin-left: 0px;
}

p.msg, p.msg-add {
    font-size: 12px;
    font-weight: bold;
    margin: 5px;
    text-align: center;
}

p.msg-add {
    text-align: left;
}

.imgClass {
    background: url('../Image/Login/button77281202.png') 0px 0px no-repeat;
    width: 100px;
    height: 41px;
    border: 0px;
}

.imgClass:hover {
    background: url('../Image/Login/button94036599.png') 0px 0px no-repeat;
}

.imgResetClass {
    background: url('../Image/Login/button77361416.png') 0px 0px no-repeat;
    width: 100px;
    height: 41px;
    border: 0px;
}

.imgResetClass:hover {
    background: url('../Image/Login/button77430504.png') 0px 0px no-repeat;
}


.button {
    background-color: #003160; /* Green */
    border: none;
    color: white;
    padding: 6px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 2px;
}

.outerLink {
    color: #003160;
}

.text-divider {
    display: flex;
    align-items: center;
}

.text-divider::before, .text-divider::after {
    flex: 1;
    content: '';
    padding: 1px;
    background-color: rgba(0, 0, 0, 0.7);
    margin: 25px 20px;
    max-width: 80%;
}

.p-bold {
    font-weight: bold;
}