/*Estilos Generales Login y Restablecimiento de contraseña*/
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  height: 100vh;
}
.login-box {
  width: 460px;
  background: #FEDFC7;
  opacity: .9;
  padding: 0 20px;
  box-shadow: 0px 0px 15px #F19F57;
  border-radius: 6%;
  /*top: 50%;*/
  left: 50%;
  transform: translate(0%, 0%);
  box-sizing: border-box;
  padding: 50px 30px;
  margin-top: 200px;
}
.login-box .avatar {
  width: 350px;
  height: 42px;
  margin-bottom: 15px;
  position:absolute;
  margin-top: -110px!important;
  left: calc(24% - 50px);
}
.login-box h1 {
  margin: 0;
  padding: 0 0 22px;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
}
.login-box label {
  margin: 0;
  padding: 0;
  font-weight: bold;
  display: block;
  margin: 5px;
}
.login-box input[type="text"], .login-box input[type="password"] {
  width: 100%;
  margin-bottom: 20px;
  border: none;
  border-bottom: 1.5px solid #fff;
  border-radius: 8px;
  outline: none;
  height: 40px;
  color: black;
  font-size: 16px;
}
.login-box input[type="radio"] {
  height: 20px;
  color: black;
  font-size: 16px;
}
.accion{
  border: none;
  outline: none;
  height: 30px;
  background: #45B156;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  width: 45%;
  margin-bottom: 20px;
}
.inactivo{
    border: none;
  outline: none;
  height: 30px;
  background: #8BCB8D;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  width: 45%;
  margin-bottom: 20px;
}
.accion:hover{
  cursor: pointer;
  background: #46A149;
}
.cancelar{
  border: none;
  outline: none;
  height: 30px;
  background: #F8423C;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  width: 45%;
  margin-bottom: 20px;
  margin-right: 10px;
}
.cancelar:hover{
  cursor: pointer;
  background: #F55549;
}
.login-box a {
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  color: black;
}
.login-box a:hover {
  color: black;
  font-size: 15px;
}
.form-group input{
    padding-left: 35px;
}
.tipo{
  font-weight: bold;
}
.margen{
  margin: 30px;
}
.form-group::before{
    font-family: "Font Awesome\ 5 Free";
    position: absolute;
    left: 28px;
    font-size: 22px;
    /*padding-top:4px;
    margin-top: 5px;*/
    padding-left: 8px;
}
.form-group#user-group::before{
    content: "\f007";
}
.form-group#contrasena-group::before{
    content: "\f023";
}
.login-box input[type="text"]:focus, .login-box input[type="password"]:focus {
    box-shadow: 0 1px 1px rgba(229, 103, 23, 0.075)inset, 0 0 8px rgba(255,144,0,0.6);
    border-radius: 8px;
    background: white;
}
.label_error{
  text-align: center;
  color: red;
  font-size: 12px;
  margin-top: -10px !important;
}
/*Estilos barra de seguridad de contraseña*/
/* ----- ----- ----- ----- */
.default{visibility: hidden;}
.debil{visibility: visible;color: #F8423C !important;  padding-bottom: 15px;}
.normal{color: #FF8827 !important}
.fuerte{color: #45B156 !important}
#complejidad{
  margin-top: -10px;
  width: 100%;
  height: 18px;
  color: black;
  font-size: 16px;
  text-align: center;
}
/*Estilo de radio buttons Html restablecer contraseña*/
/* ----- ----- ----- ----- */
.formulario > div {
    padding: 20px 0;
  }
.formulario .radio label{
    display: inline-block;
    cursor: pointer;
    color: black;
    position: relative;
    padding: 5px 15px 5px 42px;
    font-size: 1em;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-right: 22px;
    margin-left:  22px;
  }
fieldset{
  box-shadow: 0px 0px 6px #F19F57;
  border:none;
  border-radius: 15px;
}
.formulario .radio label:hover {
      background: rgba(139, 203, 141, 0.5);
    }
.formulario .radio label:before{
      content: "";
      display: inline-block;
      width: 22px/*17px*/;
      height: 22px/*17px*/;
      position: absolute;
      left: 15px;
      border-radius: 50%;
      background: none;
      border: 3px solid #E3B11A;
/*      margin-top: -3px;*/
}
.formulario input[type="radio"] {
    display: none;
  }
.formulario input[type="radio"]:checked + label:before{
      display: none;
}
.formulario input[type="radio"]:checked + label{
      padding: 5px 10px 5px 10px;
      background: #46A149;
      border-radius: 8px;
      color: white;
  --borderWidth: 4px;
  --height: 15px/*10px*/;
  --width: 9px/*4px*/;
  --borderColor: #E6B931;
}
.check {
  margin-left: 7px;
  display: inline-block;
  transform: rotate(45deg);
  height: var(--height);
  width: var(--width);
  border-bottom: var(--borderWidth) solid var(--borderColor);
  border-right: var(--borderWidth) solid var(--borderColor);
}
@media only screen and (max-width: 700px) {
  /*Estilos Generales Login y Restablecimiento de contraseña responsividad*/
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  height: 100vh;
  font-size: 12px;
}
.login-box {
  width: 320px;
  background: #FEDFC7;
  opacity: .9;
  padding: 0 20px;
  box-shadow: 0px 0px 15px #F19F57;
  border-radius: 6%;
  /*top: 50%;*/
  left: 50%;
  transform: translate(0%, 0%);
  box-sizing: border-box;
  padding: 20px 30px;
  margin-top: 200px;
}
.login-box .avatar{
  width: 220px;
  height: 32px;
  margin-bottom: 15px;
    position:absolute;
    margin-top: --60px!important;
    margin-left: -100px;
    left: calc(63% - 50px);
}
.login-box h1 {
  margin: 0;
  padding: 0 0 22px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
.login-box label {
  margin: 0;
  padding: 0;
  font-weight: bold;
  display: block;
  margin: 5px;
}
.login-box input[type="text"], .login-box input[type="password"] {
  width: 100%;
  margin-bottom: 20px;
  border: none;
  border-bottom: 1.5px solid #fff;
  border-radius: 8px;
  outline: none;
  height: 40px;
  color: black;
  font-size: 14px;
}
.login-box input[type="radio"] {
  height: 20px;
  color: black;
  font-size: 14px;
}
.accion{
  border: none;
  outline: none;
  height: 30px;
  background: #45B156;
  color: #fff;
  font-size: 12px;
  border-radius: 8px;
  width: 45%;
  margin-bottom: 20px;
}
.inactivo{
    border: none;
  outline: none;
  height: 30px;
  background: #8BCB8D;
  color: #fff;
  font-size: 12px;
  border-radius: 8px;
  width: 45%;
  margin-bottom: 20px;
}
.accion:hover{
  cursor: pointer;
  background: #46A149;
}
.cancelar{
  border: none;
  outline: none;
  height: 30px;
  background: #F8423C;
  color: #fff;
  font-size: 12px;
  border-radius: 8px;
  width: 45%;
  margin-bottom: 20px;
  margin-right: 10px;
}
.cancelar:hover{
  cursor: pointer;
  background: #F55549;
}
.login-box a {
  text-decoration: none;
  font-size: 12px;
  line-height: 20px;
  color: black;
}
.login-box a:hover {
  color: black;
  font-size: 14px;
}
.form-group input{
    padding-left: 35px;
}
.tipo{
  font-weight: bold;
}
.margen{
  margin: 30px;
}
.form-group::before{
    font-family: "Font Awesome\ 5 Free";
    position: absolute;
    left: 28px;
    font-size: 20px;
/*    padding-top:4px;*/
    margin-top: 2px;
    padding-left: 8px;
}
.form-group#user-group::before{
    content: "\f007";
}
.form-group#contrasena-group::before{
    content: "\f023";
}
.login-box input[type="text"]:focus, .login-box input[type="password"]:focus {
    box-shadow: 0 1px 1px rgba(229, 103, 23, 0.075)inset, 0 0 8px rgba(255,144,0,0.6);
    border-radius: 8px;
    background: white;
}
.label_error{
  text-align: center;
  color: red;
  font-size: 10px;
  margin-top: -10px !important;
}
/*Estilos barra de seguridad de contraseña*/
/* ----- ----- ----- ----- */
.default{visibility: hidden;}
.debil{visibility: visible;color: #F8423C !important;  padding-bottom: 15px;}
.normal{color: #FF8827 !important}
.fuerte{color: #45B156 !important}
#complejidad{
  margin-top: -10px;
  width: 100%;
  height: 18px;
  color: black;
  font-size: 14px;
  text-align: center;
}
/*Estilo de radio buttons Html restablecer contraseña*/
/* ----- ----- ----- ----- */
.formulario > div{
    padding: 20px 0;
  }
.formulario .radio label{
    display: inline-block;
    cursor: pointer;
    color: black;
    position: relative;
    padding: 5px 15px 5px 42px;
    font-size: 1em;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-right: 22px;
    margin-left:  22px;
  }
fieldset{
  box-shadow: 0px 0px 6px #F19F57;
  border:none;
  border-radius: 15px;
}
.formulario .radio label:hover{
      background: rgba(139, 203, 141, 0.5);
    }
.formulario .radio label:before{
      content: "";
      display: inline-block;
      width: 22px/*17px*/;
      height: 22px/*17px*/;
      position: absolute;
      left: 15px;
      border-radius: 50%;
      background: none;
      border: 3px solid #E3B11A;
/*      margin-top: -3px;*/
}
.formulario input[type="radio"]{
    display: none;
  }
.formulario input[type="radio"]:checked + label:before{
      display: none;

}
.formulario input[type="radio"]:checked + label{
      padding: 5px 10px 5px 10px;
      background: #46A149;
      border-radius: 8px;
      color: white;
  --borderWidth: 4px;
  --height: 15px/*10px*/;
  --width: 9px/*4px*/;
  --borderColor: #E6B931;
}
.check {
  margin-left: 7px;
  display: inline-block;
  transform: rotate(45deg);
  height: var(--height);
  width: var(--width);
  border-bottom: var(--borderWidth) solid var(--borderColor);
  border-right: var(--borderWidth) solid var(--borderColor);
}
  }