body {
    height: 100vh;
    background-size: cover !important;
    margin: 0 auto;
    padding: 0 !important;
    overflow: hidden
}

.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: 20px;
    background: rgba(4, 40, 68, 0.85);
    height: 100vh
}

.header {
    color: white;
    font-weight: bold;
    font-size: 26px;
}

.login {
    display: none;
    border-radius: 3px;
    padding: 10px 20px 20px 20px;
    width: 90%;
    max-width: 380px;
    background: #ffffff;
    position: relative;
    padding-bottom: 80px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.login .title {
    color: #444;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #eee;
    text-align: left
}

.login input[type="text"], .login input[type="password"] {
    display: block;
    padding: 15px 10px;
    margin-bottom: 10px;
    width: 100%;
    border: 1px solid #ddd;
    transition: border-width 0.2s ease;
    border-radius: 2px;
    color: #797979;
    left: 0;
}

.login input[type="text"] + i.fa, .login input[type="password"] + i.fa {
    color: #fff;
    font-size: 1.5em;
    position: absolute;
    margin-top: -40px;
    opacity: 0;
    right: 0;
    transition: all 0.1s ease-in;
}

.login input:focus {
    outline: none;
    color: #444;
    border-color: #2196F3;
    border-right-width: 35px;
}

    .login input:focus + i.fa {
        opacity: 1;
        right: 30px;
        transition: all 0.25s ease-out;
    }
     
.login .button {
    width: 100%;
    height: 100%;
    padding: 10px 10px;
    background: #2196F3;
    color: #fff;
    display: block;
    margin-top: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    max-height: 60px;
    border: 0 solid rgba(0, 0, 0, 0.1);
    border-radius: 0 0 2px 2px;
    transform: rotateZ(0deg);
    transition: all 0.1s ease-out;
    border-bottom-width: 7px;
    cursor: pointer;
    font-size: 14px
}

#txtRadCaptcha_CaptchaTextBox, #txtRadCaptcha_SpamProtectorPanel p {
    margin-bottom: 0
}

/*Checkboxes styles*/
input[type="checkbox"] {
    display: none;
}

input[type="checkbox"] + label {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    color: #ddd;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

input[type="checkbox"] + label:last-child {
    margin-bottom: 0;
}

input[type="checkbox"] + label:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #6cc0e5;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .6;
    -webkit-transition: all .12s, border-color .08s;
    transition: all .12s, border-color .08s;
}

input[type="checkbox"]:checked + label:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


.loginFooter {
    color: #9a9a9a;
    position: absolute;
    left: 25px;
    bottom: 25px;
}

.oneTimePassword {
    letter-spacing: 30px;
    direction: ltr !important;
    box-shadow: none !important;
    font-weight: 900 !important;
    margin-top: 15px !important;
    text-align: center;
}

#btnResendOTP {right: 0 !important;width: 50%;background: #bebab5;}
.Timer {font-size: 20px;font-weight: bold;float: left;width: 40px}