#passwordResetDialog > .modal-dialog {
    width: 45%;
}

#passwordExpiredDialog > .modal-dialog {
    width: 40%;
}

#forgotPassDialog > .modal-dialog {
    width: 35%;
}

.description {
    margin-bottom: 2rem;
}

.input-error {
    color: #e20000;
}

.forgot-pass {
    display: block;
    text-align: center;
    font-weight: 600;
    color: #FFF;
}

.forgot-pass:hover {
    font-weight: 700;
    color: #92eace;
}

.panel-footer{
    max-width: 300px;
    background: transparent;
    color: white;
    font-weight: bold;
    text-align: center;
}

.help-button{
    visibility: hidden;
}

html,
body{
    padding: 0px;
    margin:0px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

.login-main{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0951b3;
    position: relative;
}

.login-background2,
.login-background{
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.2s linear;
}

.login-background2{
    opacity: 0.2;
    background: black;
}

.login-content{
    min-width: 345px;
    position: absolute;
    display: flex;
    justify-content: center;
    margin-bottom: 70px;
}

.login-content2{
    height: 350px;
    width: 100%;
    display: flex;
    margin-top: 100px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    color:white;
    padding: 20px;
}

.login-content-back{
    width: 100%;
    height: 100%;
    position: absolute;
    padding:15px;
    border-radius: 15px;  
    box-shadow: 0px 0px 3px #1f1f1f;
    background: #0c2e67;
    opacity: 0.7;
}


.login-content-form{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.login-name{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10px;
    position: relative;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    
    margin-bottom: 20px;
    margin-top: 25px;
    text-transform: uppercase;
}

.login-name hr{
    background: #4f75b5;
    width: 100%;
    border: none;
    height: 15px;
    border-radius: 10px;
}

.login-name label{
    padding:8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: bold;
    /*
    background: #eeeeee;
    color:#1d4b9a;*/

    background: #4f75b5;
    color:white;

    position:absolute;
}

.login-form{
    display: flex;
    flex-direction: column;
    width: 90%;
    margin-top: 8px;
    justify-content: center;
    align-items: center;
}
.login-avatar{
    box-shadow: 0px 0px 5px black;
    position: absolute;
    width: 120px;
    z-index: 1;
    background: #1d4b9a70;
    background: #0d2e67;
    border-radius: 15px;
    padding: 13px;
}

.login-form button{
    width: 50%;
    margin:20px;
    color:white;
    border:none;
    border-radius: 4px;
    padding: 12px;
    font-weight: bold;
    text-transform: uppercase;
    background: #1d4b9a;
    transition: all 0.2s linear;
    
}

.login-form button:hover{
    box-shadow: 0px 0px 3px rgb(7, 51, 145);
    background: #055de0;
}


.login-field{
    display: flex;
    width: 100%;
    margin:5px;
    background: white;
    border-radius: 25px;
}



.login-field input{
    width: 100%;
    border-radius: 4px;
    transition: all 0.2s linear;
    font-size: 15px;
    color: #424242;
    padding: 10px;
    outline: none;
    border:none;
    
}

.login-field span{
    box-shadow: 0px 0px 4px #252525;
    margin-right: 10px;
    background: #4f75b5;
    width: 50px;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}



.login-link{
    transition: all 0.2s linear;
}
.login-link:hover{
    text-decoration: underline;
}


@media (max-width: 800px) {
    .login-background2,
    .login-background{
        filter: blur(10px);
    }
}

@media (max-height: 450px){
    .login-background{
        filter: blur(10px);
    } 
}