@charset "utf-8";
/* CSS Document */
.tema {
  display: flex;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url("../imagen/g_acceso.png")
}
.contenedor {
  text-decoration: none;
  width: 65%;
  background-color: whitesmoke;
  margin: auto;
  padding-left: 10vw;
  padding-right: 10vw;
  padding-bottom: 10vw;
  border-radius: 15px 15px 15px 15px;
  -moz-border-radius: 15px 15px 15px 15px;
  -webkit-border-radius: 15px 15px 15px 15px;
  font-family: "Open Sans";
  -webkit-box-shadow: 10px 10px 17px -10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 17px -10px rgba(0, 0, 0, 0.75);
  box-shadow: 10px 10px 17px -10px rgba(0, 0, 0, 0.75);
}
h1 {
  color: gray;
  font-size: 28px;
  font-weight: bold;
}
.formulario_preinscr {
  z-index: 15;
  position: relative;
  background: whitesmoke;
  width: 600px;
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(black, .1);
  box-sizing: border-box;
  margin: 20px auto 10px;
  overflow: hidden;
}
.formulario_usuario label {
  display: block;
  margin: 20px 0 10px;
  color: black;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .2em;
}
.formulario_usuario input[type="text"], .formulario_usuario input[type="date"], .formulario_usuario input[type="time"] {
  outline: none;
  display: block;
  background: rgba(black, 0.1);
  width: 100%;
  border: 0;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 12px 20px;
  color: gray;
  font-family: inherit;
  font-size: inherit;
  font-weight: bold;
  line-height: inherit;
  transition: 0.3s ease;
}
.formulario_usuario input[type="submit"], .formulario_usuario input[type="button"] {
  outline: none;
  margin: 20px 0 0 0;
  background: #2E81C8;
  width: 100%;
  border: 0;
  border-radius: 4px;
  padding: 12px 20px;
  color: white;
  font-family: inherit;
  font-size: inherit;
  font-weight: bold;
  line-height: inherit;
  text-transform: uppercase;
}
.formulario_usuario input[type="submit"]:hover {
  cursor: pointer;
  background-color: #FA9F26;
}

.formulario_usuario input[type="reset"] {
  outline: none;
  margin: 20px 0 0 0;
  background: rgb(210, 215, 211);
  width: 100%;
  border: 0;
  border-radius: 4px;
  padding: 12px 20px;
  color: white;
  font-family: inherit;
  font-size: inherit;
  font-weight: bold;
  line-height: inherit;
  text-transform: uppercase;
}
.formulario_usuario input[type="reset"]:hover, .formulario_usuario input[type="button"]:hover {
  cursor: pointer;
  background-color: #FA9F26;
}

.cerrar {
  outline: none;
  margin: 20px 0 0 0;
  background: #2969AF;
  width: 100%;
  border: 0;
  border-radius: 4px;
  padding: 12px 20px;
  color: white;
  font-family: inherit;
  font-size: inherit;
  font-weight: bold;
  line-height: inherit;
  text-transform: uppercase;
}
.cerrar:hover {
  cursor: pointer;
  background-color: #FA9F26;
}

@media only screen and (max-width:1200px) {
  .contenedor {
    width: 100vw;
    height: 100vh;
  }
  .formulario_preinscr {
    width: 75vw;
  }
  .contenedor_altas {
    width: 100vw;
    margin-top: 0vh;
    height: 100vh;
  }
  .cerrar {
    width: 75%;
  }
  }