* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Calibri';
}
    
html, body {
    height: 100%;
    background: rgb(225, 225, 225);
}
  
body {
    overflow-x: hidden;
}

.box-login {
    box-shadow: 10px 10px 5px rgb(200,200,200);
    max-width: 600px;    
    padding: 25px 2%;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    border-radius: 5px;
}

.box-login h2 {
    text-align: center;
    font-size: 19px;
    margin: 10px 0;
    color: black;
    font-weight: 900;
}


.box-login input[type=text], .box-login input[type=password] {
    width: 100%;
    height: 40px;
    border: 1px solid #ccc;
    padding-left: 8px;
    margin-top: 8px;
    font-size: 14px;
    outline: 0;
    border-radius: 5px;
}

#i-password {
    font-size: 16px;
    position: relative;
    top: -32px;
    float: right;
    padding-right: 5px;
    color: #808080;
    height: 0;
}

.box-login input[type=submit] {
    width: 105px;
    height: 40px;
    cursor: pointer;
    margin-top: 20px;
    font-size: 14px;
    font-weight: bold;
    background: #337ab7;
    color: #fff;
    border: 0;
    border-radius: 5px;
    float: right;
    box-shadow: 2px 2px #ccc;
}

.error-box {
    width: 100%;
    padding: 8px 2%;
    text-align: center;
    background: #F75353;
    color: white;
    font-size: 15px;
    font-weight: bold;
}

.error-box button {
    float: right;
    background: red;
    border: none;
}

.error-box i {
    color: white;
}

/*footer*/
footer {
    background-color: #78909c;
    color: white;
    padding: 8px 0;
    width: 100%;
    left: 0px;
    position: fixed;
    bottom: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.p-text_footer {
    font-weight: bold;
    font-size: 15px;
    margin: 0 0 0px !important;      
}

.div-img_footer {
    margin-left: 10px;
}

.img-logo_sec_footer {
    width: 105px; 
    height: 34px;
}

