@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
/* --------------- ESTILOS DEL Boton MODAL de Login --------------------- */

.modal{
    width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.5);
	transition: all 500ms ease;
	opacity: 0;
	visibility: hidden;
    z-index: 999;
}
.containerModal{
    width: 340px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 15px 20px rgba(0,0,0,0.1);
    position: relative;
    font-family: 'Poppins', sans-serif;
  }
  .containerModal .title{
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    /* altura del fonde de titulo */
    line-height: 60px;
    color: #fff;
    text-transform: uppercase;
    user-select: none;
    border-radius: 15px 15px 0 0;
    text-shadow: rgb(110, 110, 110) 1px 1px 1px;
    background: linear-gradient(-135deg, #fafafa,#58ACD1, #06145c41);
    /* background: linear-gradient(-135deg, #f1b309,#58ACD1, #f1b309); */
  }
  .btn_cierre{
    width: 25px;
    height: 25px;
    position: absolute;
    text-align: center;
    background-color: transparent;
    color: #206986;
    right: 3%;
    top: 3%;
    cursor: pointer;
    border: none;
  }
  
  .btn_cierre:hover{
    color: #fff;
    border:1px solid #fff;
    border-radius:100%;
    outline: none;
  }
  .containerModal form{
    padding: 10px 30px 50px 30px;
    }
  .containerModal form .style_input{
    height: 40px;
    width: 100%;
    margin-top: 20px;
    position: relative;
  }
  .containerModal form .style_input input{
    height: 100%;
    width: 90%;
    outline: none;
    padding-left: 20px;
    
    font-size: 15px;
    border: 1px solid lightgrey;
    border-radius: 25px;
   transition: all 0.3s ease;
  }

  .containerModal form .style_input input:focus,
  form .style_input input:valid{
    border-color: #206986;
  }
  .containerModal form .style_input label{
    position: absolute;
    top: 50%;
    left: 18px;
    color: #999999;
    font-weight: 400;
    font-size: 14px;
    pointer-events: none;
    transform: translateY(-50%);
    transition: all 0.3s ease;
  }
  form .style_input input:focus ~ label,
  form .style_input input:valid ~ label{
    top: 0%;
    font-size: 12px;
    color: #206986;
    background: #fff;
    transform: translateY(-50%);
  }
  form .content{
    display: flex;
    margin-top: 4%;
    width: 100%;
    height: 50px;
    font-size: 12.5px;
    margin-right: 0%;
    align-items: center;
    justify-content: space-around; 
  }
  form .content .checkbox{
    display: flex;
    align-items: center;
    justify-content: center;
  }
   form .content input{
    width: 15px;
    height: 15px;
    background: red;
    
  }
  form .content label{
    color: #262626;
    user-select: none;
    padding-left: 5px;
    text-align: center;
    
  }
  form .content .password{
    color: "";
    text-align: center;
  }
  form .style_input input[type="submit"]{
    width: 100%;
    color: #fff;
    border: none;
    padding-left: 0;
    margin-top: -10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    background: #58ACD1;
    /* background: linear-gradient(-135deg, #4159d041,#58ACD1, #f1b30967); */
    transition: all 0.3s ease;
  }
  form .style_input input[type="submit"]:active{
    transform: scale(0.95);
  }
  form .link_registrar{
    color: #262626;
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
  }
  form .password a,
  form .link_registrar a{
    color: #4158d0;
    text-decoration: none;
  }
  form .password a:hover,
  form .link_registrar a:hover{
    text-decoration: underline;
  }
  /*-------------------------- Estilos puntuales de Crear cuenta -------------------------------- */
.contentCrearCuenta{
    display: flex;
    margin-top: 4%;
    width: 100%;
    height: 50px;
    margin-right: 0%;
    align-items: center;
    justify-content: space-around; 
    /* border: 4px solid saddlebrown; */
}
#checkbox_crearCuenta{
    display:flex;
    font-size: 11px;
    /* border: 3px solid blueviolet; */
    /* justificacion del texto */
    text-align: justify;
}
.box_label{
    margin-left: 2%;
    /* border: 5px solid rgb(7, 7, 7); */
}
.checkbox a{
    color: #4158d0;
    text-decoration: none;
}
.checkbox a:hover{
    text-decoration: underline;
}

  /*-------------------------- Estilos puntuales de Restaurar contraseña -------------------------------- */
.lbl_enunciado{
    margin-top: 10px;
    font-size: 13px;
    text-align: center;
}
.containerModal .titleRestPass{
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    /* altura del fonde de titulo */
    line-height: 60px;
    color: #fff;
    text-transform: uppercase;
    user-select: none;
    border-radius: 15px 15px 0 0;
    /* background: linear-gradient(-135deg, #f1b309,#58ACD1, #4159d041); */
    background: linear-gradient(-135deg, #fafafa,#58ACD1, #06145c41);
    /* background: linear-gradient(-135deg, #f1b309,#58ACD1, #f1b309); */
  }