/* ===============================
   GOVA AUTH THEME
=============================== */

:root {
  --bg: #eef2f7;
  --card: #ffffff;
  --accent: #2563eb;
  --text: #1e293b;
  --muted: #64748b;
  --danger: #dc2626;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #dbe4ef, var(--bg));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, sans-serif;
  color: var(--text);
}

.gova-auth {
  width: 100%;
  max-width: 420px;
  padding: 24px;
}

.gova-card {
  background: var(--card);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.gova-header {
  text-align: center;
  margin-bottom: 24px;
}

.gova-header img {
  max-width: 200px;
  max-height: 100px;
  width: auto;
  height: auto;
  margin-bottom: 10px;
  object-fit: contain;
}

.gova-header h1 {
  margin: 0;
  font-size: 22px;
  letter-spacing: .5px;
}

.gova-header span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.gova-field {
  margin-bottom: 16px;
}

.gova-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: var(--text);
  font-size: 15px;
}

.gova-field input::placeholder {
  color: #94a3b8;
}

.gova-field input:focus {
  outline: none;
  border-color: var(--accent);
}

.gova-btn {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

.gova-btn:hover {
  filter: brightness(1.05);
}

.gova-error {
  background: rgba(255,107,107,.15);
  border: 1px solid var(--danger);
  color: var(--danger);
  padding: 10px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 14px;
}

.gova-footer {
  text-align: center;
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
}

/* OTP Input */
.otp-inputs {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

input.otp-digit {
  width: 46px;
  height: 54px;
  flex: 0 0 46px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: var(--text);
  padding: 0;
  transition: border-color .15s, box-shadow .15s;
  caret-color: var(--accent);
}

input.otp-digit:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
  background: #fff;
}

input.otp-digit.filled {
  border-color: var(--accent);
  background: #fff;
}

.otp-separator {
  width: 10px;
  height: 3px;
  background: #cbd5e1;
  border-radius: 2px;
  flex: 0 0 10px;
}
