@charset "UTF-8";
.boton-principal, .boton-principal2, .boton-principal1 {
  padding: 10px 14px;
  border: 0;
  border-radius: 8px;
  font-family: Poppins;
  font-weight: 400;
  font-size: clamp(12px, 0.5rem + 0.75vw, 0.875rem);
  line-height: 24px;
}
.boton-principal1 {
  background: #F9234E;
  color: white;
}
.boton-principal1:hover {
  background: #DD1D43;
  transition: 0.5s;
}
.boton-principal2 {
  background: #1479FF;
  color: white;
}
.boton-principal2:hover {
  background: #1564CD;
  transition: 0.5s;
}

.boton-secundario, .boton-secundario2, .boton-secundario1 {
  padding: 10px 14px;
  border-radius: 8px;
  font-family: Poppins;
  font-weight: 300;
  line-height: 24px;
  background: none;
}
.boton-secundario1 {
  color: #1479FF;
  border: 1px solid #1479FF;
}
.boton-secundario1:hover {
  background: #DFEDFF;
  transition: 0.5s;
}
.boton-secundario2 {
  border: 1px solid white;
  color: white;
}
.boton-secundario2:hover {
  background: rgba(255, 255, 255, 0.2);
  transition: 0.5s;
}

label {
  display: flex;
  flex-direction: column;
  width: min(350px, 100%);
  font-family: Poppins;
  font-size: clamp(12px, 0.5rem + 0.75vw, 0.875rem);
  line-height: 16px;
  color: #6D808F;
}

.label-number {
  width: min(100px, 100%);
}

.input {
  padding: 10px 14px;
  background: #FFFFFF;
  border: 1px solid #DDE6EE;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: clamp(12px, 0.5rem + 0.75vw, 0.875rem);
  width: min(350px, 100%);
  margin-top: 0.75rem;
  height: 45px;
}
.input:focus {
  border: 1px solid #1479FF;
  outline: 0;
}

input[type=date] {
  padding: 10px 14px;
  background: #FFFFFF;
  border: 1px solid #DDE6EE;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: clamp(12px, 0.5rem + 0.75vw, 0.875rem);
  width: min(200px, 100%);
  margin-top: 0.75rem;
  height: 45px;
}
input[type=date]:focus {
  border: 1px solid #1479FF;
  outline: 0;
}

.date {
  padding: 10px 14px;
  background: #FFFFFF;
  border: 1px solid #DDE6EE;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: clamp(12px, 0.5rem + 0.75vw, 0.875rem);
  width: min(200px, 100%);
  margin-top: 0.75rem;
  height: 45px;
}
.date:focus {
  border: 1px solid #1479FF;
  outline: 0;
}

.number {
  padding: 10px 14px;
  background: #FFFFFF;
  border: 1px solid #DDE6EE;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: clamp(12px, 0.5rem + 0.75vw, 0.875rem);
  width: min(200px, 100%);
  margin-top: 0.75rem;
  height: 45px;
}
.number:focus {
  border: 1px solid #1479FF;
  outline: 0;
}

.textarea {
  padding: 10px 14px;
  background: #FFFFFF;
  border: 1px solid #DDE6EE;
  box-sizing: border-box;
  border-radius: 4px;
  line-height: 1.5;
  resize: none;
  font-size: clamp(12px, 0.5rem + 0.75vw, 0.875rem);
  margin-top: 0.75rem;
}
.textarea:focus {
  border: 1px solid #1479FF;
  outline: 0;
}

h1, .h1 {
  font-family: Poppins;
  font-size: clamp(1.5rem, 1.5rem + 3vw, 3.5rem);
  line-height: 1.5;
  color: #051B2E;
  margin-top: 1.5vh;
}

h2, .h2 {
  font-family: Poppins;
  font-size: clamp(1.25rem, 1rem + 2vw, 2rem);
  line-height: clamp(2.5rem, 2rem + 1vw, 3rem);
  color: #051B2E;
  margin: 2vh 0;
}

h3, .h3 {
  font-family: Poppins;
  font-size: clamp(1rem, 1rem + 1vw, 1.25rem);
  line-height: 32px;
  color: #FFFFFF;
}

h4, .h4 {
  font-family: Poppins;
  font-size: clamp(14px, 10px + 0.6vw, 1rem);
  line-height: 32px;
  color: #F9234E;
  margin-top: 2vh;
}

h5, .h5 {
  font-family: Poppins;
  font-size: clamp(14px, 10px + 0.6vw, 1rem);
  line-height: 32px;
  color: #6D808F;
}

em {
  font-weight: 600;
}

p, .p {
  font-family: Poppins;
  font-size: clamp(12px, 0.5rem + 0.75vw, 0.875rem);
  line-height: 24px;
  color: #051B2E;
}

.p-grande {
  font-family: Poppins;
  font-size: clamp(14px, 10px + 0.6vw, 1rem);
  line-height: 24px;
  color: #051B2E;
}

.cuerpoprincipal__seccion {
  height: auto;
  padding: 0 max(4vw, 35px);
  position: relative;
}

.centrar-boton {
  display: flex;
  flex: row;
  justify-content: center;
}
.centrar-boton a {
  text-decoration: none;
}

* {
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header-login {
  height: 10vh;
  display: flex;
  align-items: flex-end;
  padding-left: max(2rem, 5vw);
}
.header-login a {
  text-decoration: none;
  font-size: clamp(14px, 10px + 0.6vw, 1rem);
  color: #1479FF;
  z-index: 5;
}

.login {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 8vh;
  z-index: 2;
}
.login-contenedor {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  background-color: rgba(255, 255, 255, 0.8);
  width: 22vw;
  min-width: 320px;
  padding: 2em;
}
.login-logo {
  width: max(60%, 150px);
  display: flex;
  margin: 1rem auto 4rem;
}
.login-form {
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.login-olvide {
  color: #1479FF;
  font-size: clamp(12px, 0.5rem + 0.75vw, 0.875rem);
  text-decoration: none;
}
.login .input {
  min-width: 250px;
  background: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  font-size: clamp(12px, 0.5rem + 0.75vw, 0.875rem);
}
.login button {
  display: block;
  margin: 3em auto 1.5em;
  min-width: 220px;
}

/* ----------------------------------- Animación ----------------------------------- */
.contenedor-animacion {
  display: flex;
  height: max(650px, 100vh);
  width: 100vw;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.circulo-animacion, .circulo-animacion6, .circulo-animacion5, .circulo-animacion4, .circulo-animacion3, .circulo-animacion2, .circulo-animacion1 {
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.circulo-animacion1 {
  background: #F9234E;
  opacity: 0.4;
  filter: blur(100px);
  border-radius: 50%;
  width: max(15vw, 250px);
  height: max(15vw, 250px);
  position: absolute;
  left: 17vw;
  top: 40vh;
  animation-duration: 25s;
  animation-name: movimiento1;
}
.circulo-animacion2 {
  background: #1479FF;
  opacity: 0.25;
  filter: blur(100px);
  border-radius: 50%;
  width: max(15vw, 250px);
  height: max(15vw, 250px);
  position: absolute;
  left: 50vw;
  top: 20vh;
  animation-duration: 20s;
  animation-name: movimiento2;
}
.circulo-animacion3 {
  background: #F9234E;
  opacity: 0.35;
  filter: blur(100px);
  border-radius: 50%;
  width: max(30vw, 400px);
  height: max(30vw, 400px);
  position: absolute;
  left: 10vw;
  top: 10vh;
  animation-duration: 32s;
  animation-name: movimiento1;
}
.circulo-animacion4 {
  background: #1479FF;
  opacity: 0.35;
  filter: blur(100px);
  border-radius: 50%;
  width: max(30vw, 400px);
  height: max(30vw, 400px);
  position: absolute;
  left: 25vw;
  top: 45vh;
  animation-duration: 42s;
  animation-name: movimiento2;
}
.circulo-animacion5 {
  background: #F9234E;
  opacity: 0.25;
  filter: blur(100px);
  border-radius: 50%;
  width: max(50vw, 550px);
  height: max(50vw, 550px);
  position: absolute;
  left: 10vw;
  top: 90vh;
  animation-duration: 16s;
  animation-name: movimiento1;
}
.circulo-animacion6 {
  background: #1479FF;
  opacity: 0.4;
  filter: blur(100px);
  border-radius: 50%;
  width: max(50vw, 550px);
  height: max(50vw, 550px);
  position: absolute;
  left: 70vw;
  top: 90vh;
  animation-duration: 40s;
  animation-name: movimiento2;
}

@keyframes movimiento1 {
  25% {
    left: 5vw;
    top: 50vh;
    opacity: 0.3;
  }
  50% {
    left: 95vw;
    top: 0vh;
  }
  100% {
    left: 30vw;
    top: 90vh;
    opacity: 0.35;
  }
}
@keyframes movimiento2 {
  25% {
    left: 0vw;
    top: 5vh;
    opacity: 0.25;
  }
  50% {
    left: 90vw;
    top: 75vh;
  }
  100% {
    left: 20vw;
    top: 40vh;
    opacity: 0.3;
  }
}

/*# sourceMappingURL=WebPublica-Login.css.map */
