
html, body {
    height: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
}
header img {
  width: 38rem;
  margin: 14px;
  @media (width <= 550px) { width: 20rem; }
}

main{
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin: 0 auto;
}

footer {
  position: absolute;
  width: 100%;
  padding: 20px;
  display: grid;
  justify-content: center;
  text-align: center;
  background: black;
  color: white;
  height: 28vh;
}

.footer a {
  color: white;
}

.footer img {
  width: 35px;
}

.footer img:hover {
  opacity: 0.5;
}

.footer a:hover {
  color: #19407C;
}

.terminos {
  max-height: 200px;
  overflow: scroll;
}

.terminos > h2 {
  color: black;
}

.color_azul{
  background-color: #19407C;
  color: white;
}
.bordes_superiores{
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;

}
.link {
  color: blue;
  text-decoration: underline;
  cursor:pointer;
  font-weight: 600;
}

.encabezado_formularios {
  display: flex;
  background-color: #19407C;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 2%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0px;
  background-color: rgb(230, 230, 230, 0.7);  
}
.loader {
  border: 16px solid #169b7a;
  /* Light grey */
  border-top: 16px solid rgb(14, 201, 107);
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1200;
  animation: spin 2s linear infinite;
  display: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#error_ingreso{
  color: red;
  font-weight: 800;
  margin-bottom: 10px;
}

