body {
    background:#000;position:fixed;top:0;left:0;right:0;bottom:0;width:100%;height:100%;
    font-family: 'Lato', sans-serif;
    color: #fff;
    font-size:12px;
    width: 100%;
    text-align: center;
}
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#login {
    width: 300px;
}
#login label {
    display: block;
    font-size:1.6em;
}
#login input {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    background-color: #eee;
    font-family: inherit;
    border: 1px solid #d0d0d0;
    box-shadow: 0;
    color: #000000;
    display: block;
    font-size: 16px;
    border-radius: 5px;
    padding: 0.5rem;
    height: 2.6875rem;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.15s linear;
    transition: all 0.15s linear;
}
#login button {
    background: #3e92d0;
    color: #fff;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border-radius: 3px 3px 3px 3px;
    border: 0;
    font-size: 15px;
    padding: 8px;
    height: 2.6875rem;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    width: 100%;
}
#login button:hover .fa {
    color: #008cba;
}
.m-t-5 {
    margin-top: 5px;
}
.m-t-10 {
    margin-top: 10px;
}
.m-t-15 {
    margin-top: 15px;
}