@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
html,
body {
  margin: 0;
  background: #222;
  color: #eee;
  font-family: "Montserrat", "Verdana";
  height: 100%;
}

html.fullWindow,
body.fullWindow {
  overflow: hidden;
}

* {
  outline: none;
  transition: 0.2s;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

body form {
  display: flex;
  flex-direction: column;
}

body form label {
  margin: 6px;
}

body form input {
  border: 2px solid #fff;
  border-radius: 6px;
  padding: 12px 12px;
  background: #45f;
  margin-bottom: 3px;
  font-family: inherit;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

body form button {
  background: #fff;
  color: #45f;
  font-weight: 700;
  border: 2px solid #45f;
  border-radius: 6px;
  padding: 12px;
  margin-top: 12px;
  font-family: inherit;
  font-size: 18px;
}

body form input:focus,
body form button:focus,
body form input.teclado-focus,
body form button.teclado-focus {
  transform: scale(1.05);
  border-color: #ffcc00;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
}

body form input:focus,
body form input.teclado-focus {
  background: #fff;
  color: #000;
}

body form button:focus,
body form button.teclado-focus {
  background: #ffcc00;
  color: #000;
}

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