* {
	box-sizing: border-box;
	margin:  0;
	padding: 0;
}
body, html {
    height: 90%;
    margin: 0;
    padding: 0;
    /*background: #2f3542;*/
    display:flex;
    flex-direction: column;
    flex-wrap:wrap-reverse;
    justify-content:space-around;
    align-items: center;
}
.header {
    display:flex;
    width:256px;
    height: 128px;
    align-items: flex-start;
    flex-wrap: nowrap;
    align-self: flex-start;    
}
.header img{
    width: 100%;
    height: auto;
}
.form-box {
    width: 300px;
    padding: 20px;
    background: #374750;
    text-align: center;
    border-style:solid;
    border-radius:16px;
    -webkit-box-reflect: below 0px linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.4));
    
}
.form-titulo {
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
}
.form-box   input[type="text"],
            input[type="password"],
            button[type="submit"]{
    border: 0;
    background: none;
    color: white;
    display: block;
    margin: 20px auto;
    padding: 10px 5px;
    text-align: center;
    border: 2px solid #faa137;
    border-radius: 24px;
    width: 200px;
    outline: none;
    transition: 0.25s;
}

.form-box   input[type="text"]:hover,
input[type="password"]:hover{
    width: 240px;
    border-color:#fff;
}

.form-box button[type="submit"]{
    border:0;
    background: #e10c0c;
    cursor:pointer;
    border-style: dotted;
    border-color:red;
    border-width: 1px;
}

.form-box button[type="submit"]:hover{
    background:none;
}