/* Full-page center */
html, body {
  height: 100%;
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: white; /* slate-900 */
  color: white;      /* gray-200 */
}

.center {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.top-right {
	position: fixed;
	top: 0;
	right: 40px;
	padding: 10px;
}

.card {
  width: 100%;
  max-width: 380px;
  background: #113c91;         /* Blue */
  border: 1px solid #1f2937;   /* gray-800 */
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

h1 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 700;
  color: white;
  text-align: center;
}

label {
  display: block;
  font-size: 12px;
  margin: 6px 0 6px;
  color: White;
}

input[type="email"],
input[type="password"] {
  width: 90%;
  padding: 5px 5px;
  border: 1px solid #374151;
  border-radius: 5px;
  background: #0b1220;
  color: White;
  outline: none;
}

input[type="email"]:focus,
input[type="password"]:focus {
  border-color: #3b82f6; /* blue-500 */
  box-shadow: 0 0 0 3px rgba(59,130,246,.25);
}

.button {

  align-items: center;
  justify-content: center;
  margin-top: 5px;
  width: 50%;
  padding: 5px 5px;
  background: #3b82f6;
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: 700;
  cursor: pointer;
}

.button:hover { filter: brightness(1.05); }

.note {
  margin-top: 12px;
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
}

.error {
  background: #7f1d1d;
  color: #fecaca;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 14px;
}
