body {
    background-color: #777777;
    font-family: Arial, Helvetica, sans-serif;
    max-width: 100%;
    overflow-x: hidden;
}

.login-box {
    margin: 10px auto;
    width: 400px;
    background-color: white;
}

.login-box .header {
    display: inline-block;
    text-align: center;
    font-size: 15px;
}

.login-box .header a {
    padding: 20px 0;
    font-weight: bolder;
}

.login-box label{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #3274d6;
    color: #ffffff;
}

.login-box label img{
    height: 40px;
    width: 40px;
}

.login-box form{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
}

input[type=text], select, input[type=password] {
    width: 310px;
    height: 50px;
    border: 1px solid #dee0e4;
    margin-bottom: 20px;
    padding: 0 15px;
    font-size: 20px;
}

#connecting{
    text-align: center;
    display: inline-block;
    width: 70%;
    height: 40px;
    margin: 20px;
    border: none;
    background-color: indianred;
    color: white;
    line-height: 40px;

}

#submit {
    width: 70%;
    height: 40px;
    margin: 20px;
    border: none;
    background-color: cornflowerblue;
    color: white;
}

#submit:hover {
    cursor: pointer;
    background-color: #3565bd;
}

#changePass{
    width: 70%;
    height: 40px;
    margin: 20px;
    font-size: 20px;
    border: none;
    background-color: cornflowerblue;
    color: white;
}

#changePass:hover {
    cursor: pointer;
    background-color: #3565bd;
}

.errors{
    text-align: center;
    padding-bottom: 20px;
}

#error-account{
    color: red;
}

#passReset-success{
    color: limegreen;
}

.otp-acknol{
    width: 100%;
    margin: 10px 0;
    text-align: center;
}

.otp-resend{
    width: 100%;
    margin-top: 20px;
    margin-bottom: 5px;
    text-align: center;
    font-size: 14px;
    color: #818181;
}

.login-help{
    width: 100%;
    text-align: center;
}

.pass-issues{
    text-align: center;
    margin: 10px;
}

.pass-issues li{
    list-style: none;
}

#pwd-restriction-length,
#pwd-restriction-upperlower,
#pwd-restriction-number,
#pwd-restriction-match{
    color: red;
}