/*
 *  LOGIN
 */
html,
body {
  height: 100%;
  background: #222222;
  font-family: 'Nunito Sans', sans-serif;
}

body#login{
  background: #222222 url(./images/bg-login.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}

#ventanaLogin{
  width: 400px;
  height: 400px;
  background: #ffffff;
  position:absolute;
  top:50%;
  left:50%;
  margin-top: -200px;
  margin-left: -200px;
  box-shadow: 0px 0px 5px #222;
  padding:40px;
}

#mensajeLogin{
  width:100%;
  float:left;
  color: #cc1600;
  text-align: center;
  line-height: 40px;
}

#ventanaLogin h1{
  color:#3c8dbc;
  text-align: center;
  margin-top: 20px;
  font-size: 30px;
  margin-bottom: 40px;
}

#ventanaLogin img{
  height: 90px;
}