/* Pantalla de acceso al gestor. Sencilla y rápida: se ve muchas veces al día. */

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #16202e;
  color: #16202e;
  font: 15px/1.5 "Segoe UI", system-ui, sans-serif;
  padding: 24px;
}

.caja {
  background: #fff;
  width: 100%;
  max-width: 380px;
  padding: 38px 34px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
}

.marca { font-size: 24px; margin: 0; letter-spacing: -.4px; font-weight: 400; }
.marca strong { color: #1f4e79; font-weight: 700; }
.subtitulo { color: #6b7280; margin: 2px 0 28px; font-size: 14.5px; }

label { display: block; margin-bottom: 18px; }
label span { display: block; font-size: 13px; font-weight: 600; color: #37475a; margin-bottom: 6px; }

input {
  width: 100%;
  font: 16px inherit;
  padding: 12px 14px;
  border: 1px solid #c6d0da;
  border-radius: 7px;
  color: #16202e;
}
input:focus { outline: none; border-color: #1f4e79; box-shadow: 0 0 0 3px #eaf1fa; }

button {
  width: 100%;
  background: #1f4e79;
  color: #fff;
  border: 0;
  border-radius: 7px;
  padding: 14px;
  font: 600 16px inherit;
  cursor: pointer;
  margin-top: 6px;
}
button:hover { background: #17406f; }
button:disabled { background: #9aa8b5; cursor: default; }

.error { color: #b3261e; font-size: 14px; margin: 0 0 12px; min-height: 1px; }
.pie { color: #8a94a0; font-size: 12.5px; margin: 24px 0 0; text-align: center; }
