.login{
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 30px;
    background: #f9f9f9;
    padding: 5vh 0px;
}

.login-title{
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-weight: normal;
    color: #848484;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.login-container{
    width: 350px;
    min-height: 30px;
    margin: auto;
    margin-bottom: 15px;
    padding: 15px 30px;
    border: solid 1px #d8dee2;
    border-radius: 5px;
}

.login-container > p{
    width: 100%;
    font-size: 16px;
    margin: 0;
    padding: 0;
    text-align: center;
}

.login-container-white{
    background: #fff;
}

.login-logo{
    width: 100%;
    padding: 15px 0px;
    text-align: center;
}

.login-logo a img{
    width: 165px;
}

.login-form-group{
    display: block;
    padding-bottom: 30px;
}

.login-form-control{
    width: 100%;
    height: 35px;
    padding: 0px 15px;
    border: solid 1px #d8dee2;
    border-radius: 5px;
}

.login-form-group label{
    width: 100%;
    margin-bottom: 7px;
    font-size: 15px;
    color: #333333;
    font-weight: 600;
}

.login-forget-password{
    position: relative;
    float: right;
    font-size: 13px;
    top: 2px;
}

.login-btn-submit{
    width: 100%;
    padding: 5px 5px;
    text-align: center;
    border: solid 1px #d8dee2;
    border-radius: 5px;
    background: #0b78c2;
    text-align: center;
    color: #fff;
    cursor: pointer;
    transition: all ease 0.2s;
}

.login-btn-submit:hover{
    background: #0b5b97;
}

.login-footer{
    width: 435px;
    min-height: 30px;
    margin: auto;
    margin-top: 30px;
    padding: 15px 30px;
}

.login-footer ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
}

.login-footer-link-contact{
    color: #383737;
}