/*=====  Contenedores  ======*/

.contenedor {
  max-width: 90%;
  width: var(--ancho-contenedor);
  margin: 20px auto;
  overflow: hidden;
}

.contenedor-ancho {
  width: 100%;
  padding: 0 40px;
  margin: 20px auto;
}

/*=====  Grid  ======*/

.grid {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}
.grid-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tamaño grande - Computadoras y Tv (Bootstrap con mobile first) */
/* .col-1 {grid-template-columns: repeat(1, 1fr);}
  .col-2 {grid-template-columns: repeat(2, 1fr);}
  .col-3 {grid-template-columns: repeat(3, 1fr);}
  .col-4 {grid-template-columns: repeat(4, 1fr);}
  .col-5 {grid-template-columns: repeat(5, 1fr);}
  .col-6 {grid-template-columns: repeat(6, 1fr);}
  .col-7 {grid-template-columns: repeat(7, 1fr);}
  .col-8 {grid-template-columns: repeat(8, 1fr);}
  .col-9 {grid-template-columns: repeat(9, 1fr);}
  .col-10 {grid-template-columns: repeat(10, 1fr);}
  .col-11 {grid-template-columns: repeat(11, 1fr);}
  .col-12 {grid-template-columns: repeat(12, 1fr);} */

.span-1 {
  grid-column: span 1;
}
.span-2 {
  grid-column: span 2;
}
.span-3 {
  grid-column: span 3;
}
.span-4 {
  grid-column: span 4;
}
.span-5 {
  grid-column: span 5;
}
.span-6 {
  grid-column: span 6;
}
.span-7 {
  grid-column: span 7;
}
.span-8 {
  grid-column: span 8;
}
.span-9 {
  grid-column: span 9;
}
.span-10 {
  grid-column: span 10;
}
.span-11 {
  grid-column: span 11;
}
.span-12 {
  grid-column: span 12;
}

/* Tamaño mediano - Tablets (Bootstrap con mobile first) Tamaño igual o menor a 992px */
@media screen and (max-width: 992px) {
  .med-col-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .med-col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .med-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .med-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .med-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .med-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .med-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .med-col-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .med-col-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .med-col-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .med-col-11 {
    grid-template-columns: repeat(11, 1fr);
  }
  .med-col-12 {
    grid-template-columns: repeat(12, 1fr);
  }
  . .med-span-1 {
    grid-column: span 1;
  }
  .med-span-2 {
    grid-column: span 2;
  }
  .med-span-3 {
    grid-column: span 3;
  }
  .med-span-4 {
    grid-column: span 4;
  }
  .med-span-5 {
    grid-column: span 5;
  }
  .med-span-6 {
    grid-column: span 6;
  }
  .med-span-7 {
    grid-column: span 7;
  }
  .med-span-8 {
    grid-column: span 8;
  }
  .med-span-9 {
    grid-column: span 9;
  }
  .med-span-10 {
    grid-column: span 10;
  }
  .med-span-11 {
    grid-column: span 11;
  }
  .med-span-12 {
    grid-column: span 12;
  }
}
/* Tamaño pequeño - Smartphones (Bootstrap con mobile first) Tamaño igual o menor a 576px */
@media screen and (max-width: 576px) {
  .peq-col-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .peq-col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .peq-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .peq-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .peq-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .peq-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .peq-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .peq-col-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .peq-col-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .peq-col-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .peq-col-11 {
    grid-template-columns: repeat(11, 1fr);
  }
  .peq-col-12 {
    grid-template-columns: repeat(12, 1fr);
  }

  .peq-span-1 {
    grid-column: span 1;
  }
  .peq-span-2 {
    grid-column: span 2;
  }
  .peq-span-3 {
    grid-column: span 3;
  }
  .peq-span-4 {
    grid-column: span 4;
  }
  .peq-span-5 {
    grid-column: span 5;
  }
  .peq-span-6 {
    grid-column: span 6;
  }
  .peq-span-7 {
    grid-column: span 7;
  }
  .peq-span-8 {
    grid-column: span 8;
  }
  .peq-span-9 {
    grid-column: span 9;
  }
  .peq-span-10 {
    grid-column: span 10;
  }
  .peq-span-11 {
    grid-column: span 11;
  }
  .peq-span-12 {
    grid-column: span 12;
  }
}

/*=====  Componentes  ======*/

.card {
  /* padding: 40px; */
  /* background: #fff; */
  /* border-radius: 3px; */
  /* box-shadow: 0px 0px 30px rgba(221, 221, 221, 0.3); */
}
.card-activar {
  padding: 40px 0 130px;
  background: #fff;
  border-radius: 0px;
  box-shadow: none;
  width: 340px;
}
.nav-tabs .nav-link {
  color: var(--bs-body-color);
}
.nav {
  /* background: rgba(67, 16, 195, 1); */
  
  display: flex;
  flex-wrap: wrap;
}

.nav .contenedor {
  display: flex;
  flex-wrap: wrap;
  margin: 0px auto;
}

.nav a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 15px 25px;
  transition: 03s ease all;
  font-size: 18px;
}

.nav a:hover,
.nav a.activo {
  background: rgba(89, 59, 221, 1);
}

/*=====  Formularios  ======*/

form * {
  font-family: "Roboto", sans-serif !important;
}

form .input {
  padding: 10px 15px;
  border-radius: 0px;
  border: 1px solid #c0c0c0;
  transition: 0.3s ease all;
  width: 100%;
  height: 45px;
  margin-bottom: 20px;
}

form .input-passw {
  padding: 10px 15px;
  height: 45px;
  transition: 0.3s ease all;
  width: 100%;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif !important;
  color: #666363;
  font-size: 15px;
  border: 1px solid rgb(200, 200, 200);
  background-color: transparent;
  border-radius: 0px;
}
.input-group .btn {
  position: absolute;
  margin-left: -45px;
  margin-top: 8px;
}

.inputGroup .btn {
  position: absolute;
  margin-left: -45px;
  margin-top: 8px;
}

.button {
  background: #641ee7;
  border: none;
  cursor: pointer;
  color: #fff;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 0px;
  text-align: center;
  line-height: 22px;
  transition: 0.3s ease all;
  font-weight: 700 !important;
}

.button:hover {
  background: #5114c2;
}

.button.azul {
  background: #67a5da;
  color: #000000;
  width: 100%;
  height: 48px;
  font-family: "Roboto", sans-serif !important;
  font-style: normal;
  font-weight: 700 !important;
  line-height: 19px;
  text-align: center;
}

.button.azul:hover {
  background: #b9d1ea;
  color: #7f7d7d;
}

.div-act {
  width: 100%;
  height: 26;
  margin-bottom: 5%;
  box-shadow: rgba(53, 53, 53, 1.1) 0px 10px 10px -10px;
}

/*=====  Nuevo Input  ======*/
.inputGroup {
  font-family: "Roboto", sans-serif !important;
  margin: 1em 0 1em 0;
  max-width: 100%;
  position: relative;
}

.inputGroup input {
  font-size: 15px;
  padding: 10px 15px;
  height: 45px;
  outline: none;
  border: 1px solid rgb(200, 200, 200);
  background-color: transparent;
  border-radius: 0px;
  width: 100%;
  font-family: "Roboto", sans-serif !important;
  transition: 0.3s ease all;
  color: #666363;
}

.inputGroup label {
  position: absolute;
  left: 0;
  padding: 0.8em;
  pointer-events: none;
  font-size: 15px;
  font-family: "Roboto", sans-serif !important;
  transition: 0.3s ease all;
  color: #666363;
}

.inputGroup :is(input:focus, input:valid) ~ label {
  transform: translateY(-50%) scale(0.9);
  margin: 0em;
  margin-left: 1.3em;
  padding: 0.4em;
  background-color: #fff;
}

.inputGroup :is(input:focus, input:valid) {
  border: 1px solid rgb(200, 200, 200);
}

/*=====  Placeholder  ======*/

.icono-placeholder-image {
  background-image: url("../img/vector-placeholder.png");
  background-size: 22px 16px;
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
}

/*=====  Complementos  ======*/

.strong-tit {
  font-size: 20px !important;
  font-weight: 700 !important;
}

.lista {
  font-size: 15px;
  font-family: "Roboto", sans-serif !important;
  color: #000000;
  padding-left: 0px;
  margin: 0px 0px 0px 1px;
  font-weight: 400;
  list-style: disc;
}
.new-pass {
  font-size: 15px;
  font-family: "Roboto", sans-serif !important;
  color: #000000;
  padding-left: 0px;
  margin: 0px 0px 0px 21px;
  font-weight: 400;
  list-style: disc;
}
.new-pass-act-check {
  color: #609f56;
  font-weight: 400;
  list-style: none;
  list-style-image: url("../img/check.png");
  font-family: "Roboto", sans-serif !important;
}
.new-pass-act-error {
  color: #dc6d55;
  font-weight: 400;
  list-style: none;
  list-style-image: url("../img/error.png");
  font-family: "Roboto", sans-serif !important;
}

.esp-bottom {
  margin-bottom: 10%;
}
.cuenta-act {
  font-size: 18px;
}

/*=====  Iniciar Sesion ======*/

.forg-pass {
  width: 100%;
  text-align: right;
  margin-top: -5px;
  margin-bottom: 38px;
}
.forg-pass a {
  font-size: 15px;
  font-family: "Roboto", sans-serif !important;
  color: #333;
  text-decoration: none;
}
.forg-pass a:hover {
  text-decoration: underline;
  color: #333;
}

/*=====  Recuperar Cuenta ======*/

.recup-pass {
  width: 400px;
  margin: 50px auto 0px;
  text-align: left;
  font-size: 15px;
  font-family: "Roboto", sans-serif !important;
  color: #333;
  text-decoration: none;
}

/*=====  Envio de correo ======*/

.send-mail-title {
  font-size: 18px;
  font-family: "Open Sans", sans-serif !important;
  color: #000;
  font-weight: 600 !important;
}
.send-mail {
  max-width: 400px;
  margin: 50px auto 0px;
  font-size: 15px;
  font-family: "Roboto", sans-serif !important;
  color: #333;
  text-align: justify;
  text-align: center;
  padding-inline: 20px;
}

/*=====  Confirmación nueva contraseña ======*/

.pass-conf {
  width: 400px;
  margin: 50px auto 0px;
  font-size: 15px;
  font-family: "Roboto", sans-serif !important;
  color: #333;
  text-align: center;
}

/*=====  Boton Menu ======*/
.button-login {
  background-color: black;
  padding: 15px 25px;
  color: white !important;
}

/*=====  Warning Message ======*/
.warning-message {
  color: red;
  padding-bottom: 25px;
}

/*=====  Icon Password ======*/
.icon-password {
  position: absolute;
  top: 7px;
  right: 16px;
  font-size: 24px;
}

#proyectos-home {
  margin-top: 100px;
}

.input-component  input.error-input:focus {
  border-color: #dc354521;
  outline: 0;
  box-shadow: 0 0 0 0.25rem #dc354529;
}

.is-invalid:is(input){
  border-color: #EA0000 !important;
}

.is-invalid:is(span) {
  color: #EA0000;
  font-size: 14px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: block;
  text-align: left;
  padding: 1px 10px 0 5px;
  text-wrap: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.is-invalid:is(span):before{
  content: '\F333';
  margin-right: 5px;
  font-family: bootstrap-icons !important;
}