/* ####################################################################################################################
GENERAL
#################################################################################################################### */

body {
margin: 0 auto;
padding: 0;
font-size: 14px; 
font-family: Arial, Helvetica, Sans-Serif; 
color: #161f1f; 
line-height: 150%; 
background: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #f2f2f2;
    min-height: 100vh;
    font-family: 'Noto Sans', Arial, sans-serif;
}


#loginWrapper {
       width: 300px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 77px 55px 33px 55px;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1); 
}
form input {
        outline: none;
    border: none;
    margin:0;
    font-size: 15px;
    color: #555555;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 45px;
    background: transparent;
    padding: 0 5px;
    text-align: left;
    border-bottom: 2px solid #adadad;
    transition: all 250ms ease-in-out;
}

form label {
    display:block;
    position: relative;
    width: 100%;
    position: relative;
    
    margin-bottom: 37px;
    transition: all 250ms ease-in-out;
     text-align: left;
}
form label span {
    transition: all 250ms ease-in-out;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    line-height: 50px;
    top:0;
}
input:focus + span, input:not(:placeholder-shown) + span {
  top: -29px;
  transition: all 250ms ease-in-out;
  opacity:.5
}
input:focus {
 border-color:#161f1f;
}

a.save {
    text-decoration: none;
    border-radius: 5px;
    box-sizing: border-box;;
    font-size: 15px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    background: #161f1f;
}
.notShow {display:none;}
#loginWrapper {text-align: center;}
 img {width:200px;margin:0 auto;}
