@import url('https://fonts.googleapis.com/css?family=Exo:300,400,400i,500,600,700,800,900|Lato:400,700,700i,900|Open+Sans:300,400,600,700');

*{margin: 0;    padding: 0; border: 0;  outline: 0; list-style-type: none;  font-weight: inherit;   font-style: inherit;    vertical-align: baseline;   -webkit-box-sizing: border-box; -moz-box-sizing: border-box;    box-sizing: border-box;}


*:focus{
    outline: 0;
}

*:active{outline: 0; border:none;}

b{
    font-weight: bold;
}
html{
    height: 100%;
}

html, body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 100;
    font-size: 16px;
    letter-spacing: 0.4px;
}

body{
    background-color: #ffffff!important;
    height: 100%;
    display: block;
    float: left;
    width: 100%;
}
a{
    color: #555;
}
p{
    font-size: 0.9375em;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(0,0,0,0.7);
    letter-spacing: 0.01rem;
    margin-bottom: 20px;
    word-wrap: break-word;
    -webkit-text-rendering: optimizelegibility;
    text-rendering: optimizelegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    font-family: 'Open Sans', sans-serif;
}
body{
    /* display:flex; */
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    background-image: url(../imagens/bg_1.png);
    background-position: center;
    background-repeat: no-repeat;
}
body:before{
    -webkit-box-flex: 1;
    box-flex: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    content: '';
    display: block;
    height: 24px;
}
body:after{
    -webkit-box-flex: 1;
    box-flex: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    content: '';
    display: block;
    height: 24px;
}

.box-login{
    width: 400px;
    background: #fff;
    padding: 48px 40px 36px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    border-top: 4px solid #1a73e8;
    border-bottom: 4px solid #1a73e8;
    border-left: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
}

.box-login .header-login {}

.box-login .header-login img {
    max-width: 80%;
    height: 40px;
    margin-left: auto;
    display: block;
    margin-right: auto;
    margin-bottom: 10px;
}

.box-login .header-login h1 {
    font-size: 16px;
    display: block;
    text-align: center;
    line-height: 30px;
    color: #828282;
    font-weight: 400;
    margin-bottom: 25px;
}
.box-login .input{
    margin-bottom: 18px;
}
.box-login .input input {
    width: 100%;
    padding: 13px 15px;
    border-radius: 4px;
    font-size: 14px;
    box-shadow: 0px 0px 0px 1px #dadce0;
    transition: opacity 0.3s ease-in-out;
}
.box-login .input.erro input{
    /* border:2px solid #d93025; */
    box-shadow: 0px 0px 0px 2px #d93025 inset!important;
    color: #d93025;
}

.box-login .input input:focus {
    box-shadow: 0px 0px 0px 2px #1a73e8 inset;
}
.box-login button {color: #fff;padding: 10px 15px;border-radius: 4px;font-size: 14px;background: #1a73e8;font-weight: 500;cursor: pointer;}
