
*{
margin: 0;
padding: 0;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
}

html,
body{
    background-image: url(../img/fondo-login.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
height: 100%;
}




.container{
height: 100%;
text-transform: uppercase;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

h1{
color: #f78c0f;
text-align: center;
font-size: 1.5rem;
margin-bottom: 32px;
}



.form-background{
    background: #fff;
    width: 450px;
    height: 400px;
    border-radius: 10px;
    padding: 32px;
    align-self: center;
    -webkit-box-shadow: 0px 15px 88px -37px rgba(0,0,0,0.17);
    -moz-box-shadow: 0px 15px 88px -37px rgba(0,0,0,0.17);
    box-shadow: 0px 15px 88px -37px rgba(0,0,0,0.17);
} 

form{
text-transform: capitalize;
text-align: center;
}

input{
  width: 100%;
  margin-bottom: 15px;
  border-radius: 30px;
  border: 1px solid rgba(0,0,0,0.17);
  padding: 15px 20px;
  color:#626466;
  font-size: .9rem;
  transition: .1s;
  
    &:last-child{
    margin-bottom: 0;
  }
  &:focus{
    border-color: #f78c0f;
    outline: none;
  }
}

[type="submit"]{
  background:#f78c0f;
  border-radius: 30px;
  padding: 16px 30px;
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  font-size: .8rem;
  transition: .1s;
  border: none;
  box-shadow: none;
  margin: 0;
  
    &:hover{
    background:#121F89;
    cursor: pointer;
  }
}
