html, body {
    height: 100%;
    overflow: hidden;
}
h2{
    font-size: 14px;
    font-weight: bold;
    color: #005AB4!important;
    line-height: 40px;
}

a{
    color: #999999;
}
input[type=text],input[type=password],input[type=email],input[type=select] {
    width:100%;
    height: 40px;
	margin-bottom:20px;
	float:left;
    font-size:14px;
    padding:10px 10px 9px 10px !important;
    resize:none;
    border: 1px solid #cecece !important;
    border-radius: 5px;
}
.btn-primary {
    color: #fff;
    background-color: #005AB4;
    border-color: #005AB4;
}
.page-header{
    background-color: #005AB4!important;

}
.div-login{
    width: 100%;
    max-width: 390px;
}
.div-login-header{
    width: 100%;
    padding: 3%;
    border-radius: 10px 10px 0 0;
    background-color: #FFF!important;
}
.div-login-body{
    display: inline-block;
    width: 100%;
    padding: 0 5% 5% 5%;
    border-radius: 0px;
    background-color: #FFF!important;
}
.div-login-footer{
    width: 100%;
    height: 20px;
    border-radius: 0 0 10px 10px;
    background-color:#005AB4!important;
}
.jumbotron {
    background-color: #003161!important;
    background-image: url("../../../images/bg-back.png");
    background-size: cover;
}
.container{
    width: 390px;
}
.vertical-center {
    min-height: 100%;  /* Fallback for vh unit */
    min-height: 100vh; /* You might also want to use
    'height' property instead.

    Note that for percentage values of
    'height' or 'min-height' properties,
    the 'height' of the parent element
    should be specified explicitly.

    In this case the parent of '.vertical-center'
    is the <body> element */

    /* Make it a flex container */
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; 

    /* Align the bootstrap's container vertically */
    -webkit-box-align : center;
    -webkit-align-items : center;
    -moz-box-align : center;
    -ms-flex-align : center;
    align-items : center;

    /* In legacy web browsers such as Firefox 9
    we need to specify the width of the flex container */
    width: 100%;

    /* Also 'margin: 0 auto' doesn't have any effect on flex items in such web browsers
    hence the bootstrap's container won't be aligned to the center anymore.

    Therefore, we should use the following declarations to get it centered again */
    -webkit-box-pack : center;
    -moz-box-pack : center;
    -ms-flex-pack : center;
    -webkit-justify-content : center;
    justify-content : center;
}

