:root {
  --fuente: 'Montserrat', sans-serif;
  --IdentidadAzul: #1EA6F4;
  --IdentidadGris: #E5FFD7;
  --IdentidadNegro: #000;
  --verde: #6A9113;
  --verde2:linear-gradient(45deg, #85FFBD 0%, #FFFB7D 100%);
  --blanco: #fff;
  --primary-color: #000;
  --highlight-color: #FF8DAC;
}

/************************************VARIABLES GLOBALES***********************************/
body {
  line-height: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font: 150% sans-serif;
 background: white; 
 /*linear-gradient(180deg, rgba(94, 255, 69, 0.31), rgba(255, 255, 255, 1))*/
}

html {
  box-sizing: border-box;
  font-size: 60%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

p {
  font-size: 1.65rem;
  font-family:150% sans-serif;
  /* color: var(--IdentidadAzul); */
}
label {
  font-size: 1.8rem;
  font-family: 150% sans-serif;
  font-weight: 400;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.contenedor {
  max-width: 120rem;
  margin: 0 auto;
  width: 90%;
  margin-bottom: 1rem;
}
/************************************index***********************************/
.contenedor_header {
  max-width: 40rem;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 1rem;
  margin-top: 4rem;
}
.index-inicio {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logins {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.logins img {
  width: 30%;
  height: auto;
  margin-right: 20px;
  transition: transform 0.3s ease;
}

.logins img:hover {
  transform: scale(1.1);
}

.botones {
  display: grid;
  grid-gap: 10px; 
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.botones a {
  display: block;
  width: 250px;
  padding: 15px;
  margin-bottom: 10px;
  text-align: center;
  background-color: #2E5F3F;
  color: var(--blanco);
  text-decoration: none;
  border-radius: 10px;
  transition: transform 0.3s ease;
    
}

.botones a:hover {
  transform: scale(1.1);
}

/***************logins****************************/

.registro_login{
  width: 40%;
  margin: 0 auto;
  padding: 10px;
  background-color: none;
  border-radius: 5px;
}
.registro_login legend {
  color: black;
  text-align: center;
  margin-bottom: 20px;
  font-size: 40px;
}

.registro_login label {
  color: black;
  display: block;
  margin-bottom: 10px;
}

.registro_login .contenedor-campos {
  margin-bottom: 20px;
}

.registro_login .campo {
  margin-bottom: 10px;
}

.registro_login .input-text {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.registro_login .boton {
  width: 60%;
  padding: 10px;
  background-color: #2E5F3F;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.registro_login .boton:hover {
  background-color: #08707B;
}

.registro_login .padding1 {
  margin-bottom: 10px;
}

.registro_login .padding1 a {
  color: black;
}
/***************dashboard****************************/
.contenedor {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.margen-arriba {
  margin-top: 20px;
}

.dashboard {
  display: flex;
  flex-wrap: wrap;
}

.dash_opcion {
  flex-basis: 33.33%;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.dash_opcion__imagen {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.dash_opcion__descripcion {
  margin: 0;
}

.dash__informacion {
  padding: 10px;
  background-color: none;
  border-radius: 5px;
}

.dash_opcion a {
  text-decoration: none;
  color: black;
}

.dash_opcion a:hover {
  background-color: none; /* Cambia al color  deseado */
  color: #172628;
  transform: scale(1.1);
}

.dash_opcion a:hover .dash_opcion__imagen {
  transform: scale(1.2);
}

.dash_opcion:nth-child(2) a:hover {
  background-color: none; 
}


/***************Citas****************************/
.custom-background {
  background-color: rgba(0, 0, 0, 0.1); /* Color oscuro con opacidad 0.2 */
  color: #fff; /* Color de texto en contraste */
  border: 1px solid #ccc; /* Borde del elemento */
}

.form-label {
color: black  /*Etiquetas de los forms en color negro */
}


/***************nvbar dash****************************/

.nav {
  background-color: none;
  padding: 10px;
}
.nav ul {
  list-style: none;
}
.nav a {
  text-decoration: none;
}
.navegacion {
  margin-top: 20px; /* Ajusta según la cantidad de espacio que quieras */
}
.navegacion__enlace {
  color: #000000;  /* Color de texto para los enlaces */
}
.navegacion__enlace:hover {
  color: #004d00;  /* Color de texto al pasar el ratón sobre los enlaces */
}
.visible-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #fff;
  z-index: 1000; 
  width: 100%; 
}
.visible-menu li {
  font-size: 13px;
  display: inline;
}
.visible-menu li:last-child {
  margin-right: 0;
}

.visible-menu li a {
  text-decoration: none;
  color: #333;
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.visible-menu li a:hover {
  background-color: #ccc;
  border-color: #999;
}

.mensaje {
  color: var(--IdentidadNegro);
  font-size: 2.4rem;
  font-family: var(--fuente);
  text-align: center;
  font-weight: 400;
  margin: 15rem auto 0;
  text-decoration: none;
}

/***************datos asesores/residentes****************************/
.datos_personales{
  background-color:#f2f2f2;
  max-width: 500px;
  margin: 1rem auto;
  padding: 80px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.datos_personales fieldset {
  border: none;
}
.datos_personales legend {
  font-weight: bold;
  margin-bottom: 20px;
}

.datos_personales label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.datos_personales input[type="text"],
.datos_personales input[type="email"],
.datos_personales input[type="tel"],
.datos_personales select {
  width: 90%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}
.datos_personales .boton-verde {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #2E5F3F;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}
.datos_personales label:last-child {
  margin-bottom: 0%;
}
.datos_personales .boton-verde:hover {
  background-color: #3B8F7F;
}
.input boton-verde {
  width: 30%; 
}
 /************************************UTILIDADES***********************************/
  .w-sm-100 {
    /*se coloca en las clases después del nombre*/
    width: 100%;
  }
  .w-50 {
    width: 50%;
  }
  .w-25 {
    width: 25%;
  }
  @media(min-width: 768px) {
    .w-50 {
      width: 50%;
    }
    .w-25 {
      width: 25%;
    }
  }
  .height-50 {
    height: 50%;
    margin-bottom: 40rem;
    font-size: 3rem;
    line-height: 150%;
  }
  .height-100 {
    height: 100%;
    margin-bottom: 40rem;
    font-size: 3rem;
    line-height: 150%;
  }
  .padding1{
    padding-top: 1.2rem;
  }
  .padding2{
    padding-left: 15rem;
  }
  .derecha{
    text-align: right;
  }
  .justificado {
    justify-content: center;
  }
  .centrado{
    text-align: center;
  }
  .h-70{
    height: 70%;
  }
  .talr{
    text-align-last:right;
  }

  .m0{
    margin: auto;
  }
/************************************PDF EMBED*/
.reportes {
  padding-top: -5rem;
  margin: auto;
  display: block;
  width: 80%;
  height: 85vh;
  margin-bottom: 10rem;
  border: none;
}
/************************************DATOS DE LA SESIÓN***********************************/
.bienvenido {
  background-color:none;
  font-size: 15px;
  font-family: 1% sans-serif;
  margin: auto;
  text-decoration: none;
  width: 30%;
  color: black;
  text-align: center;
  margin-top: -3rem;
}

/************************************citas***********************************/
.citas form {
  background-color: none; /* color fondo */
  padding: 20px;
  float: left;
  margin-right: 150px; /* Aumenta el margen derecho para una separación más grande */
}

/* Estilos para el formulario de envío de documentos */
form {
  background-color: none; /* color fondo */
  padding: 20px;
  float: right;
  margin-left: 150px; /* Aumenta el margen izquierdo para una separación más grande */
}

/* Estilos para los elementos del formulario */
label {
  display: block;
  margin-bottom: 10px;
  color: #000000; /* Negro */
}

input[type="date"],
input[type="time"],
select {
  margin-bottom: 10px;
  padding: 5px;
  width: 200px;
}

input[type="submit"] {
  background-color: #2E5F3F;
  color: #FFFFFF; /* Blanco */
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #3B8F7F; /* Azul más claro en el hover */
}