:root {
  --fuente: 'Montserrat', sans-serif;
  --IdentidadAzul: rgb(27, 57, 106);
  --IdentidadGris: #E5FFD7;
  --IdentidadNegro: #000;
  --verde: #71b100;
  --blanco: #fff;
}

/************************************VARIABLES GLOBALES***********************************/
body {
  background-color: var(--blanco);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
  margin: 0;

}

main {
  margin-top: 75px;
  margin-bottom: 75px;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

p {
  font-size: 1.65rem;
  font-family: var(--fuente);
  /* color: var(--IdentidadAzul); */
}
label {
  font-size: 1.8rem;
  font-family: var(--fuente);
  font-weight: 400;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.contenedor {
  max-width: 120rem;
  margin: 0 auto;
  width: 90%;
  margin-bottom: 1rem;
}

h1 {
  font-size: 10rem;
  font-weight: 700;
}

h2 {
  font-size: 3.2rem;
  margin-top: 15px;
}

h3 {
  text-align: center;
  color: var(--IdentidadNegro);
  font-family: var(--fuente);
  font-size: 2.4rem;
}


/************************************login***********************************/
.login {
  background-color: #f0f0f0;
  width: min(60rem, 100%);
  /*min utiliza el valor más pequeño entre 600px o 100%*/
  margin: -45px auto 0;
  padding: 2rem;
  border-radius: 1rem;
}

.login fieldset {
  border: none;
}

.login legend {
  text-align: center;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 2rem;
  color: var(--blanco);
  font-family: var(--fuente);
}

.contenedor-campos {
  font-family: var(--fuente);
  font-size: 1.5rem;
}

.campo {
  margin-bottom: 1rem;
}

.input-text {
  width: 100%;
  border: none;
  padding: 1rem;
  border-radius: .5rem;
}

.campo label {
  color: var(--blanco);
  font-weight: bold;
  margin-bottom: .5rem;
  display: block;
}


.login p,
a {
  font-family: var(--fuente);
  text-decoration: none;
  color: var(--blanco);
}




/************************************index***********************************/
.contenedor_header {
  max-width: 40rem;
  margin: 0 auto;
  width: 90%;
  margin-bottom: 1rem;
  margin-top: 7rem;
  position: fixed;
  top: 0;
}
  .login_asesores a {
  display: grid;
  background-color: white;
  color: black;
  border: 2px solid green;
  padding: 10px20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font: oblique bold 120% cursive;
   
  font-weight: bold;
  text-transform: uppercase;
  font-size: 2rem;
  padding: 20px 20px;
  margin-top: 1rem;
  column-gap: 2rem;
}

a:hover, a:active {
  color: white;
}

/************************************citas***********************************/

.citas form {
      width: 400px;
      margin: 0 auto;
      background-color: #fff;
      padding: 20px;
      border-radius: 5px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .citas h2 {
      text-align: center;
    }

    .citas label {
      display: block;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .citas input[type="date"],
    .citas input[type="time"],
    .citas select {
      width: 100%;
      padding: 10px;
      margin-bottom: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 16px;
    }

    .citas input[type="submit"] {
      padding: 10px 20px;
      background-color: #4CAF50;
      color: #fff;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
    }


/************************************FOOTER***********************************/
.footer {
  background-color: #2E5F3F;
  text-align: center;
  color: var(--blanco);
  font-family: var(--fuente);
  font-weight: bold;
  font-size: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 5px;
  position: relative;
  margin-top: auto;
}



