@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f4f4f6;
  padding: 3vh 0;
  width: 100%; /* Hace que el contenido dentro ocupe el 100% del ancho del body */
  box-sizing: border-box;
}

.contenido {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
  margin: 10vh 0;
}

.mod-login {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 2em;
  align-items: center;
  transition: all 0.4s ease;
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 15px 15px 30px #c9c9c9, -15px -15px 30px #ffffff, inset 0 0 0 transparent, inset 0 0 0 transparent;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}

.logo p {
  font-family: "Work Sans", sans-serif;
  font-size: clamp(1px, 2.5vw, 2.25rem);
  font-weight: 800;
  text-transform: uppercase;
}

.logo img {
  width: 60%;
  height: auto;
}

.campo {
  width: 80%;
  display: flex;
  flex-direction: column;
  margin-bottom: 3vh;
}

.campo label {
  font-family: "Work Sans", sans-serif;
  font-size: clamp(1px, 0.8vw, 0.72rem);
  font-weight: bold;
}

.mod-login button {
  width: 40%;
  border: none;
  padding: 2vh 0;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(1px, 0.8vw, 0.72rem);
  font-weight: bold;
  text-transform: uppercase;
  background-color: #000000;
  border: 1px solid #000000;
  border-radius: 5px;
}

.mod-login button:active {
  color: #fff;
  background-color: #1A1A1A;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.inputInfo {
  border-radius: 5px;
  border: 1px solid black;
  padding: 1vh clamp(1px, 1vw, 0.9rem);
}/*# sourceMappingURL=login.css.map */