@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  src: url("build/font/Roboto/Roboto-Thin.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url("../font/Roboto/Roboto-Light.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../font/Roboto/Roboto-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../font/Roboto/Roboto-Medium.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../font/Roboto/Roboto-Bold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  src: url("../font/Roboto/Roboto-Black.ttf") format("truetype");
  font-display: swap;
}
/** Media Queries **/
.boton-amarillo {
  background-color: #FFC107;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  max-width: 200px;
  margin: 1rem 0;
}
.boton-amarillo:hover {
  background-color: rgb(236.5, 177.375, 0);
  cursor: pointer;
}

.boton-verde {
  background-color: #198754;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  max-width: 200px;
  margin: 1rem 0;
}
.boton-verde:hover {
  background-color: rgb(21.015625, 113.484375, 70.6125);
  cursor: pointer;
}

.boton-rojo {
  background-color: #DC3545;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  max-width: 200px;
  margin: 1rem 0;
}
.boton-rojo:hover {
  background-color: rgb(210.9493670886, 36.5506329114, 53.2594936709);
  cursor: pointer;
}

.boton-azul {
  background-color: #0D6EFD;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  max-width: 200px;
  margin: 1rem 0;
}
.boton-azul:hover {
  background-color: rgb(1.9713114754, 97.5799180328, 238.5286885246);
  cursor: pointer;
}

.boton-celeste {
  background-color: rgb(88.8729508197, 155.4610655738, 253.6270491803);
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  max-width: 200px;
  margin: 1rem 0;
}
.boton-celeste:hover {
  background-color: rgb(63.5819672131, 140.3073770492, 253.4180327869);
  cursor: pointer;
}

.boton-gris {
  background-color: #6C757D;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  max-width: 200px;
  margin: 1rem 0;
}
.boton-gris:hover {
  background-color: rgb(96.1802575107, 104.19527897, 111.3197424893);
  cursor: pointer;
}

.boton-circulo-estado {
  padding: 1rem;
  background-color: #6C757D;
  border: 2px;
  border-radius: 1rem;
}
.boton-circulo-estado:hover {
  background-color: #6c757d;
  cursor: pointer;
}

.boton-circulo-estado-verde {
  padding: 1rem;
  background-color: #198754;
  border: 2px;
  border-radius: 1rem;
}
.boton-circulo-estado-verde:hover {
  background-color: rgb(21.015625, 113.484375, 70.6125);
  cursor: pointer;
}

.boton-circulo-estado-rojo {
  padding: 1rem;
  background-color: #DC3545;
  border: 2px;
  border-radius: 1rem;
}
.boton-circulo-estado-rojo:hover {
  background-color: rgb(210.9493670886, 36.5506329114, 53.2594936709);
  cursor: pointer;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  height: 100%;
  overflow-y: auto;
}

body {
  font-family: "Roboto", sans-serif;
  font-display: swap;
  font-size: 1.6rem;
  line-height: 1.8;
  overflow-y: auto;
}

p {
  color: #000000;
  font-size: 2rem;
}

a {
  text-decoration: none;
}

h1, h2, h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  margin: 2rem 0;
}

h1 {
  font-size: 3.8rem;
}

h2 {
  font-size: 3.4rem;
}

h3 {
  font-size: 3rem;
}

h4 {
  font-size: 2.6rem;
}

body {
  background-color: #DC3545;
}

.auth {
  margin: 0 auto;
  margin-top: 5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  background-color: #212529;
  width: 30rem;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  color: #FFFFFF;
}
.auth__logo {
  width: 20rem;
  max-height: 8rem;
  margin-bottom: 2rem;
}
.auth__form {
  display: flex;
  flex-direction: column;
  width: 25rem;
}
.auth__input {
  padding: 1rem;
  text-align: center;
  margin-bottom: 1rem;
  border-radius: 2rem;
}
.auth__submit {
  background-color: #198754;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  border-radius: 1.5rem;
}
.auth__submit:hover {
  background-color: rgb(21.015625, 113.484375, 70.6125);
  cursor: pointer;
}
.auth__enlace {
  color: #FFFFFF;
  font-size: 1.2rem;
}
.auth__h2 {
  margin-top: 0;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 400;
}/*# sourceMappingURL=login.css.map */
