*{
	margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body{  

background: url(img/INICIO.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;

}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    overflow: visible;
    z-index: 99;
    clear: both;
    background-color: rgba(0,0,0,.3);
    color: white;
    font-size: 12px;
    text-align: right;
    padding-right: 10px;    
}

footer a{
  color: rgba(255,255,255,.7);
  text-decoration: none;
}

footer a:hover{
  text-decoration: underline;
}

.login-form{
  color: white;
  width: 100%;
  max-width: 400px;  
  padding: 20px;
  text-align: center;
  margin: auto;
  margin-top: 180px;
  animation: cambia-color 10s linear infinite;
  background-color: rgba(0,0,0,.3);  
  background-size: 400% 400%;

}

.logotipo{
    width: 140px;
    margin-top: 20px;
}

.login-form__input{
  display: block;
  width: 100%;
  margin-bottom: 1em;
  border: none;
  line-height: 2.5;
  padding: 0 1em;

}

.login-form__submit{
  display: block;
  width: 100%;
  background: teal;
  color:#fff;
  border: none;
  line-height: 2.5;  
  font-size: 1.1em;
  cursor: pointer;
}

input[type="text"]{
    width: 100%;
    padding: 8px;
    font-size: 14px;
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.4);
    border-style: none;
    outline: 0px;
    color: black;    
}

input[type="password"]{
    width: 100%;
    padding: 8px;
    font-size: 14px;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.4);
    border-style: none;
    outline: 0px;
    color: black;    
}

input[type="button"]{
    width: 100%;
    padding: 8px;
    font-size: 13px;
    font-weight: 100;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-style: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    outline: 0px;
    color: black;    
    transition: background 300ms;
}

input[type="button"]:hover{
    cursor: pointer;
    background: rgba(255, 255, 255, 0.6);
}
