* {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    color: inherit;
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
    box-shadow: 0;
}

:before, :after {
    box-sizing: border-box;
}

input:focus {
    outline:none;
}

div:after, ul:after, form:after, li:after, fieldset:after, label:after {
    content: ".";
    display: block;
    visibility: hidden;
    clear: both;
    height: 0;
    overflow: hidden;
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    background: #1A1D22;
    height: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, li {
    list-style: none;
}

/******************************
 * Estilo Portal
 ******************************/
#login {
    width: 290px;
    height: 370px;
    margin: 0 auto;
    top: calc(50% - 185px);
    display: block;
    position: relative;
    color: #B3B3B3;
    font-family: Roboto, serif;
    font-size: 12px;
}

#login .logo {
    text-align: center;
    width: 100%;
    height: 52px;
    margin: 0 auto 40px;
    position: relative;
    display: inline-block;
    background: url(../../img/cms/logo2.png) no-repeat center;
}

#login .input {
    background: #FFF no-repeat;
    border-left: 5px solid #FD0017;
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

#login .input:nth-child(2) {
    background-image: url(../../img/cms/login_email.png);
    background-position: 14px center;
}

#login .input:nth-child(3) {
    background-image: url(../../img/cms/login_senha.png);
    background-position: 16px center;
}

#login input[type=checkbox] {
    position: relative;
    bottom: -1px;
    margin-right: 4px;
}

#login .lembrar:hover {
    color: #e1e1e1;
}

#login .input input[type=text],
#login .input input[type=password] {
    width: 240px;
    margin: 9px auto;
    height: 26px;
    padding: 0 10px;
    font-family: Roboto, serif;
    float: right;
    color: #000000;
    border-left: 1px solid #B3B3B3;
}

#login input[type=submit] {
    position: relative;
    width: 100%;
    height: 46px;
    font-family: Roboto, serif;
    color: #FFF;
    font-size: 14px;
    font-weight: bold;
    margin: 20px auto 20px;
    z-index: 1;
    cursor: pointer;
    display: block;
    background: #FD0017;
}

#login input[type=submit]:hover {
    background: #c60014;
}

#login p {
    text-align: center;
}

#login p a:hover {
    color: #e1e1e1;
}