* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }  

  .form-register {
    width: 95%;
    background: #565f68;
    padding: 30px;
    margin: auto;
    margin-top: 5px;
    border-radius: 7px;
    font-family: 'calibri';
    color: white;
    box-shadow: 3px 6px 9px #000;
  }
  .form-register2 {
    width: 100%;
    background: #b3bcc5;
    padding: 10px;
    margin: auto;
    margin-top: 5px;
    border-radius: 10px;
    font-family: 'calibri';
    font-size: 22px;
    color: rgb(0, 0, 0);
    box-shadow: 1px 2px 3px #000;
  }
  
  .form-register h4 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .Vcontrol {
    width: 100%;
    background: #ffffff;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 16px;
    border: 1px solid #061025;
    font-family: 'calibri';
    font-size: 18px;
    color: rgb(0, 0, 0);
  }
  
  .form-register p {
    height: 40px;
    text-align: center;
    font-size: 18px;
    line-height: 40px;
  }
  
  .form-register a {
    color: rgb(0, 0, 0);
    text-decoration: none;
  }
  
  .form-register a:hover {
    color: rgb(0, 0, 0);
    text-decoration: underline;
  }
  
  .form-register .botons {
    width: 100%;
    background: #1f53c5;
    border: none;
    padding: 12px;
    color: white;
    margin: 16px 0;
    font-size: 16px;
  }
#reg_px{
  display: none;
}
#add_est{
  display: none;
}
.form-label {
	display: block;
	font-weight: 700;
	padding: 10px;
	cursor: pointer;
}
.form1 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.formulario_reg-incorrecto .form-control{
  color: rgb(165, 16, 16);
}
.formulario_reg-correcto .form-control{
  color: rgb(10, 126, 25);
}

.form-control{
  width: 100%;
	background: #fff;
	border: 1px solid;
	border-radius: 3px;
	height: 45px;
	line-height: 45px;
	padding: 0 40px 0 10px;
	transition: .3s ease all;
}
.form-control:focus{
  border: 3px solid #325d8f;
	outline: none;
	box-shadow: 3px 0px 30px rgba(163,163,163, 0.4);
}
.email_error{
	display: none;
}
.email_error-activo{
	display: block;
}
#guardar_form1{
  display: none;
}
#guardar_form2{
  display: none;
}
.mycheckbox input:checked ~ span::after{
  background: rgba(14, 178, 14, 0.781);
  transform: scale(0.9) translate(33px);
}
.mycheckbox input:checked ~ span .on{
  transform: translate(30px);
  opacity: 1;
}
.mycheckbox input:checked ~ span .off{
  transform: translate(30px);
  opacity: 0;
}
.mycheckbox input:checked ~ span i{
  transform: translate(30px);
}
.mycheckbox input{
  display: none;
}
.mycheckbox span{
  display: inline-block;
  width: 60px;
  height: 30px;
  background: rgba(175, 187, 192, 0.905);
  border-radius: 30px;
  cursor: pointer;
  box-shadow: inset 2px 2px 2px rgb(67, 67, 67);

  position: relative;

}
.mycheckbox span::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  transform: scale(0.9);
  border-radius: 30px;
  background: rgba(255, 0, 0, 0.653);
  transition: 0.5s;
  box-shadow: inset 2px 2px 2px rgb(122, 121, 121);
}

.mycheckbox i {
  position: relative;
  left: 7px;
  top: 7px;
  z-index: 1;
  color: white;
  transition: 0.5s;
}
.mycheckbox .on{
  opacity: 0;
  transition: 0.5s;
}
.mycheckbox .off{
  opacity: 1;
  transition: 0.5s;
}