/* ── Geko Money — Login (Geko Brand Design System) ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 15px;
  line-height: 1.47;
  background: #f5f5f7;
  color: #111111;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
}

.login-wrap { width: 100%; padding: 24px; }

.login-card {
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

.login-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.login-logo {
  width: 32px;
  height: 32px;
  background: #000;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-title {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.2px;
}

.login-heading {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #555555;
}

input {
  padding: 11px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: #111111;
  background: #fff;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

input:focus {
  border-color: #3ba448;
  box-shadow: 0 0 0 4px rgba(59,164,72,.12);
}

.error-msg {
  margin-bottom: 16px;
  padding: 12px 16px;
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #dc2626;
  font-size: 13px;
}

.btn-login {
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
}

.btn-login:hover { background: #3ba448; }
.btn-login:disabled { opacity: .5; cursor: default; }

@media (max-width: 480px) {
  .login-wrap { padding: 16px; }
  .login-card { padding: 32px 24px; border-radius: 12px; }
  .login-heading { font-size: 24px; margin-bottom: 24px; }
}
