@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap'); body * {
    box-sizing: border-box;
}

body{
    font-family: 'Open Sans', sans-serif;
    margin:0;
}

.loginscreen {
    display: block;
    height: 100vh;
    padding-bottom: 30px;
    position: relative;
}

.login-footer {
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
    left: 0;
    right: 0;
    font-size: 13px;
}

.header-login {
    background-color: #1A2027;
    padding: 10px
}
.header-login img{
    max-height: 50px;
}

.form {
    display: block;
    width: 347px;
    margin: auto;
    background-color: #fff;
    box-shadow: 0 0 20px #ccc;
    padding: 20px;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.form h3 {
    margin: 0 0 20px 0;
    text-align: center;
    font-weight: 400;
}

.form .form-group {
    margin: 10px 0
}

.form .form-group .form-control {
    display: block;
    width: 100%;
    border: 1px solid #ccc;
    padding: 5px 10px;
    height: 40px;
    outline: none;
    font-size: 17px;
    border-radius: 3px;
}

.form .btn-primary {
    display: block;
    width: 100%;
    border: 0;
    padding: 10px;
    height: 40px;
    background-color: #006e97;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    border-radius: 3px;
}

.form .btn-primary:hover{
    background: #005271;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.30);
}

.form .forgot-password {
    text-align: right;
    margin: 5px 0;
}

.form .forgot-password a{
    color: #000000;
    text-decoration: none;
}
.pull-left{
    float: left;
    font-size: 13px;    
}
.va-m{
    vertical-align: middle;
}
.loginscreen hr{margin: 15px 0 0 0;border-top: 1px solid #ccc;border-bottom: 0;}
.need-help-btn{text-align: center;text-decoration: none;padding: 0 20px !important;line-height: 40px;height: 40px !important;color: #006e97 !important;background-color: transparent !important;outline: none;box-shadow: none !important;font-size: 15px !important;font-weight: 500 !important;}
.need-help-btn svg{width: 20px;height: auto;margin-right: 10px;fill: #006e97;display: inline-block;vertical-align: sub;}
.need-help-btn:focus, .need-help-btn:focus-visible {box-shadow: inset 0 0 0px 2px #000 !important;}
@media only screen and (max-width: 1024px){
    .loginscreen hr,.need-help-btn,#forget-password-link{display: none !important;}
}
@media only screen and (max-width: 767px){
    .form{position: static;transform: translate(0, 0);margin: 20px auto;}
    .login-footer {position: static;}
}

@media only screen and (max-height: 450px){
    .form{position: static;transform: translate(0, 0);margin: 20px auto;}
    .login-footer {position: static;}
}