html, body {
  font-family: "Roboto";
  margin: 0;
  padding: 0;
  border: 0;
  position: absolute;
  height: 100%;
  min-width: 100%;
  font-size: 13px;
  color: #ffffff;
  direction: ltr;
  font: 14px/1.3 Arial, sans-serif;
  background: #17202A;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

BODY.admin {
  background: #17202A;
  font-family: Verdana, Arial, Helvetica;
  font: 14px/1.3 Arial, sans-serif;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.contenedor-1 {
  background: transparent;
  height: 100vh;
  display: flex;
  align-items: top;
  justify-content: center;
}

.contenedor-2 {
  display: flex;
  flex-direction: column;
  width: 80%;
  text-align: center;
  align-items: center;
}

.modalExterno {
  position: fixed;
  font-family: Arial, Helvetica, sans-serif;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99999;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  display: none;
  pointer-events: none;
  overflow: auto;
}

.modalExterno:target {
  display: block;
  pointer-events: auto;
}

.modalExterno>div {
  width: 550px;
  position: relative;
  margin: 6% auto;
  padding: 15px;
  background: #182535;
  border-radius: 40px;
  border: #324456 10px solid;
  background: -moz-linear-gradient(#182535, #262729);
  background: -webkit-linear-gradient(#182535, #262729);
  background: -o-linear-gradient(#182535, #262729);
}

.entradadedatos {
  padding: 10px 40px;
  position: relative;
  border-radius: 5px;
  color: #f2f2f2;
  background: transparent;
  border: pink solid 1px;
  font-family: "Roboto", Verdana, Arial, Helvetica;
}

.entradadedatos #Texto, #Date #Email {
  direction: ltr;
  height: 15px;
  font-size: 1rem;
}

.entradadedatos input[type=email],
.entradadedatos input[type=text],
.entradadedatos input[type=date],
.entradadedatos input[type=password],
.entradadedatos input[type=number] {
  font-family: "Roboto";
  font-size: 20px;
  color: #F0F4F8;
  width: 90%;
  outline: none;
  padding: 8px;
  background: #2C3A48;
  border-radius: 9px;
  border: none;
}

.entradadedatos input[type=text]:focus,
.entradadedatos input[type=text]:active,
.entradadedatos input[type=date]:focus,
.entradadedatos input[type=date]:active,
.entradadedatos input[type=password]:focus,
.entradadedatos input[type=password]:active,
.entradadedatos input[type=number]:focus,
.entradadedatos input[type=number]:active {
  outline: none;
  border-bottom: 2px solid #000000;
}

.entradadedatos input[type=text]:disabled,
.entradadedatos input[type=date]:disabled,
.entradadedatos input[type=number]:disabled {
  border: 1px solid rgb(121, 145, 157);
  background: rgba(0, 0, 0, 0.3);
  height: 30px;
  font-size: 1.1rem;
  color: #ffffff;
}

.entradadedatos input[type=email] .recupera {
  font-size: 2.1rem;
}

.ver_pase {
  display: block;
  position: relative;
  float: right;
  margin-top: -35px;
  margin-right: 75px;
}

.boton_ejecutar {
  background: #E8A33C;
  border-radius: 2px;
  border: 1px solid #E8A33C;
  color: #1F1A14;
  cursor: pointer;
  display: inline-block;
  font-family: "Roboto";
  font-size: 18px;
  padding: 10px;
  width: 15rem;
  margin: 7px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 9px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3),
    0 3px 10px 0 rgba(0, 0, 0, 0.29);
}

.en_verde .en_rojo {
  text-decoration: none;
}

.en_verde:hover {
  background: green;
  color: white;
  border: 1px solid green;
  text-decoration: none;
}

.en_rojo:hover {
  background: red;
  color: white;
  border: 1px solid red;
  text-decoration: none;
}

.tamano_M {
  font-size: 1.2rem;
  padding: .4em .6em .4em .6em;
}

a,
a:hover,
a:visited {
  cursor: pointer;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.el-usuario {
  display: block;
  width: 16rem !important;
  padding: 12px !important;
  font-size: 2rem;
  text-align: center;
}

.msg-usuario {
  display: block;
  width: 21rem !important;
  font-size: 1.3rem;
  padding-bottom: 0.3rem;
  border: dotted yellow 1px;
}

.orientacion1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  border: green solid 1px;
}

.campo_pase {
  display: block;
  width: 22rem !important;
  padding: 12px !important;
  font-size: 2rem;
  text-align: center;
  border: rgb(255, 146, 3) solid 1px !important;
}


@media screen and (max-width: 450px) {

  body {
    padding-top: 60px
  }

  .contenedor-1 {
    align-items: top;
  }

  .contenedor-2 {
    align-self: flex-start;
    width: 96%;
  }

  .modalExterno>div {
    width: 96%;
    max-width: 310px;
    padding: 10px 10px;
  }

  .boton_ejecutar {
    margin-bottom: 15px;
  }

  .el-usuario {
    width: 90% !important;
  }

  .msg-usuario {
    width: 98% !important;
    font-size: 1.1rem;
  }

  .orientacion1 {
    flex-direction: column;
    align-items: center;
  }

  .campo_pase {
    width: 90% !important;
    font-size: 1.4rem !important;
  }

  .ver_pase {
    display: none;
  }


}