@import "https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: "Work Sans", sans-serif;
}

a:focus, a:active {
  outline: none;
}

body {
  background-color: #051a2d;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.formulario {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 1rem;
  height: 450px;
  width: 350px;
  background-color: rgb(1, 10, 26);
  border-radius: 8px;
}

.logo {
  width: 80px;
}

.container-input {
  display: flex;
  flex-direction: column;
  width: 80%;
  gap: 3rem;
}

.input-box {
  padding: 0.6rem 0.6rem;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}
.input-boxfocus {
  outline: none;
}

.submitBtn {
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
  height: 12%;
  background-color: #049cf9;
  color: #f1ffe5;
  font-size: 16px;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.submitBtn:hover {
  background-color: rgb(6, 120, 196);
}

@media (max-width: 374px) {
  .formulario {
    padding: 2rem 1rem;
    width: 300px;
  }
  .container-input {
    width: 95%;
  }
}
@media (max-width: 312px) {
  .formulario {
    padding: 2rem 0;
    width: 280px;
  }
  .container-input {
    width: 90%;
  }
}
@media (max-width: 296px) {
  .formulario {
    width: 100%;
  }
  .container-input {
    width: 80%;
  }
}

/*# sourceMappingURL=login.css.map */
