*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.menu_bar
{
    z-index: 1000;
}
a
{
    text-decoration: none;
}
#cuerpo
{
    margin: 0 auto;
    width: 100%;
    max-width: 1300px;
    z-index: 1;
}
html, body {background-color: #f2f2ec; }

@keyframes spinner {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(359deg);
  }
}
* {
  box-sizing: border-box;
}

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
  z-index: 1;
}

.login {
  border-radius: 2px 2px 5px 5px;
  padding: 10px 20px 20px 20px;
  width: 90%;
  max-width: 420px;
  background: #ffffff;
  position: relative;
  padding-bottom: 80px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
}
.login.loading button {
  max-height: 100%;
  padding-top: 50px;
}
.login.loading button .spinner {
  opacity: 1;
  top: 40%;
}
.login.ok button {
  background-color:  #a11010;
}
.login.ok button .spinner {
  border-radius: 0;
  border-top-color: transparent;
  border-right-color: transparent;
  height: 20px;
  animation: none;
  transform: rotateZ(-45deg);
}
.login input, #registro input {
  display: block;
  padding: 15px 10px;
  margin-bottom: 10px;
  width: 100%;
  border: 1px solid #ddd;
  transition: border-width 0.2s ease;
  border-radius: 2px;
  color: #ccc;
  font-size: 16px;
}
.login input + i.fa {
  color: #fff;
  font-size: 1em;
  position: absolute;
  margin-top: -47px;
  opacity: 0;
  left: 0;
  transition: all 0.1s ease-in;
}
.login input:focus  {
  outline: none;
  color: #444;
  border-color:  #a11010;
  border-left-width: 35px;
}
#registro input:focus {
  outline: none;
  color: #444;
  border-color:  #a11010;
}
.login input:focus + i.fa {
  opacity: 1;
  left: 30px;
  transition: all 0.25s ease-out;
}
.login a {
  font-size: 0.8em;
  color: #2196F3;
  text-decoration: none;
}
.login .title {
  color: #a11010;
  font-size: 21px;
  font-weight: bold;
  margin: 10px 0 30px 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  text-align: center;
}
.login #boton {
  width: 100%;
  height: 100%;
  padding: 10px 10px;
  background:  #a11010;
  color: #fff;
  display: block;
  border: none;
  margin-top: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  max-height: 60px;
  border: 0px solid rgba(0, 0, 0, 0.1);
  border-radius: 0 0 2px 2px;
  transform: rotateZ(0deg);
  transition: all 0.1s ease-out;
  border-bottom-width: 7px;
  font-size: 19px;
  margin-bottom: 0px;
}
.login #boton .spinner {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  border: 4px solid #ffffff;
  border-top-color: rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  left: 50%;
  top: 0;
  opacity: 0;
  margin-left: -20px;
  margin-top: -20px;
  animation: spinner 0.6s infinite linear;
  transition: top 0.3s 0.3s ease, opacity 0.3s 0.3s ease, border-radius 0.3s ease;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
}
.login:not(.loading) #boton:hover {
  box-shadow: 0px 1px 3px #2196F3;
}
.login:not(.loading) #boton:focus {
  border-bottom-width: 4px;
}
form a p
{
    text-decoration: none;
    color:#575757;
    text-align: center;
    font-size: 15px;
}
#registro #boton{
    background: #dbce21;
    color:#fff;
    padding: 8px;
    font-size: 20px;
    -moz-transition: .4s linear;
    -webkit-transition: .4s ease-out;
    transition: .4s linear;
}
#boton:hover
{
    cursor:pointer;
    background-color: #930d0d ;
    -moz-transition: .4s linear;
    -webkit-transition: .4s ease-out;
    transition: .4s linear;
    box-shadow: 0px 1px 3px #2196F3;
}
#registro #boton2{
    background: #a11010;
    color:#fff;
    padding: 8px;
    font-size: 20px;
    -moz-transition: .4s linear;
    -webkit-transition: .4s ease-out;
    transition: .4s linear;
}
#boton2:hover
{
    cursor:pointer;
    background-color: #930d0d ;
    -moz-transition: .4s linear;
    -webkit-transition: .4s ease-out;
    transition: .4s linear;
    box-shadow: 0px 1px 3px #2196F3;
}
#imagen_pc
{
    margin-bottom: -10px;
}
#linea
{
    background-color: #a11010;
    height: 3px;
}
@media screen and (max-width: 1000px) {
    #imagen_movil
    {
        display: block;
        margin-bottom: -10px;
    }
    #imagen_pc
    {
        display: none;
    }
}
@media screen and (min-width: 1001px) {
    #imagen_movil
    {
        display: none;
    }
}