* {
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  font-size: 1em;
}

/*============        Body     ============*/
body {
  font-family: "Segoe UI", sans-serif;
  font-size: 1.2em;
  line-height: 1.6;
  position: relative;
  padding-bottom: 3em;
  min-height: 100vh;
}

/*============        Botones     ============*/
.btn {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  background-color: #3a8dde;
  border-color: #3a8dde;
  cursor: pointer;
  margin: 0px 15px;
  padding: 10px 25px;
  width: auto;
  margin: auto;
}
.btn:hover {
  background-color: #12a14b;
  border-color: #10181F;
  color: white;
}
@media screen and (max-width: 600px) {
  .btn {
    width: 100%;
    margin: 0 1%;
  }
}

.btn-registro:hover {
  background-color: #C5CAE9;
  border-color: #10181F;
  color: rgb(0, 0, 0);
  font-weight: bold;
}

.btn_svg {
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  border: none;
  color: #3a8dde;
  background: transparent;
  transition: 0.2s;
}
.btn_svg:hover, .btn_svg:focus {
  color: white;
  background: #3a8dde;
  border-color: #3a8dde;
}
.btn_svg .svg-icon {
  position: relative;
  flex-shrink: 0;
  height: 2rem;
  width: 2rem;
  fill: currentColor;
  transition: fill 0.3s;
}

.btn_accion:hover, .btn_accion:focus {
  background: #12a14b;
}

.btn_historial:hover, .btn_historial:focus {
  background: #3a8dde;
  border-color: #3a8dde;
}

.btn_salir:hover, .btn_salir:focus {
  background: #DE3A3B;
  border-color: #3a8dde;
}

.link_btn {
  text-decoration: none;
  margin: 0px 1%;
}

.btn_forumlario {
  display: block;
  margin: 3% auto;
}

.btn_consultar {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 38px;
  width: 240px;
}
.btn_consultar:hover {
  background-color: #C5CAE9;
  border-color: #10181F;
  color: rgb(0, 0, 0);
}

.barra_botones {
  padding: 10px 0px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .barra_botones {
    display: none;
  }
}

.btn_home {
  color: black;
}

.btn_home:hover {
  border-radius: 15px;
  background-color: #DEDD3A;
  transform: scale(1.1);
}

.icon_home {
  height: 3rem;
  width: 3rem;
}

.msg {
  margin: 0px 1rem;
  padding: 1rem;
  display: flex;
  border-radius: 15px;
  align-items: center;
  justify-content: space-between;
  animation: hithere 1s forwards;
}

@keyframes hithere {
  30% {
    transform: scale(1.05);
  }
  40%, 60% {
    transform: rotate(-3deg) scale(1.05);
  }
  50% {
    transform: rotate(3deg) scale(1.05);
  }
  70% {
    transform: rotate(0deg) scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.msg_error {
  background-color: rgba(255, 0, 0, 0.4);
  color: darkred;
  font-weight: bold;
}
.msg_error button {
  color: darkred;
}

.msg_alerta {
  background-color: rgba(255, 234, 0, 0.4);
  color: rgb(190, 136, 0);
  font-weight: bold;
}
.msg_alerta button {
  color: rgb(190, 136, 0);
}

.msg_exito {
  background-color: rgba(0, 255, 68, 0.4);
  color: darkgreen;
  font-weight: bold;
  animation: none;
}
.msg_exito button {
  color: darkgreen;
}

.close-btn {
  cursor: pointer;
  background: none;
  border: none;
  font-weight: bold;
  font-size: 1.3rem;
  padding: 0;
  margin-left: 10px;
}

@media screen and (max-width: 480px) {
  .msg {
    margin: 5px;
    padding: 1rem;
  }
}
/*============        Formularios     ============*/
.contenedor_formulario {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  border-radius: 10px;
  background-color: rgb(240, 240, 240);
  border: 1px solid rgba(58, 140, 222, 0.466);
  box-shadow: 0 4px 8px 0 rgba(0, 174, 239, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  width: 80%;
  height: auto;
  margin: 0 auto;
  padding: 30px 0;
}
.contenedor_formulario form {
  width: 80%;
  height: auto;
}
.contenedor_formulario .form-control {
  margin: auto;
}
.contenedor_formulario .grupo_botones {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
  margin: auto;
  margin: 2% 0%;
}
.contenedor_formulario fieldset {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background-color: rgba(58, 141, 222, 0.85);
  opacity: 0.9;
  border-radius: 15px;
  padding: 1% 5%;
  margin: 2% 0%;
}
.contenedor_formulario fieldset input, .contenedor_formulario fieldset select {
  width: 90%;
  font-size: 1.1rem;
  background-color: white;
  border-radius: 5px;
  text-align: center;
}
.contenedor_formulario fieldset input:focus, .contenedor_formulario fieldset select:focus {
  border: 3px solid rgb(58, 141, 222);
  box-shadow: 0 3px 5px darkblue;
  transform: scale(1.05);
}
.contenedor_formulario fieldset label {
  margin: 1% 0 0 1%;
  margin: auto;
  font-size: 1.3rem;
  text-align: center;
}
.contenedor_formulario fieldset legend {
  float: none;
  font-size: 1.5rem;
  background-color: rgb(45, 42, 43);
  color: white;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  width: -moz-max-content;
  width: max-content;
  padding: 0 20px;
}
.contenedor_formulario span {
  width: auto;
  height: auto;
  text-align: center;
  margin-left: 10px;
  background-color: transparent;
  font-size: 1.1rem;
  margin: 10px 15px;
}
.contenedor_formulario .grupo_dato {
  flex: 40%;
  text-align: center;
}
.contenedor_formulario .grupo_dato_oculto {
  display: none;
  flex: 40%;
  text-align: center;
}
.contenedor_formulario .item_oculto {
  display: none;
}
.contenedor_formulario .grupo_contrasenia {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.contenedor_formulario .seccion_requisitos {
  flex-wrap: nowrap;
}
@media screen and (max-width: 600px) {
  .contenedor_formulario {
    width: 98%;
    padding: 0%;
    margin: 0 auto;
  }
  .contenedor_formulario fieldset {
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    width: 100%;
  }
  .contenedor_formulario form {
    width: 95%;
  }
  .contenedor_formulario .grupo_dato {
    display: block;
    width: 100%;
  }
  .contenedor_formulario .grupo_dato_oculto {
    display: none;
    width: 100%;
  }
}
.contenedor_formulario #btn_cancelar {
  margin: 0 !important;
}/*# sourceMappingURL=estilo.css.map */