* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }

body {
  background: #f0f2f5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

h1 { font-size: 24px; color: #1a1a2e; margin-bottom: 6px; }

.subtitle { color: #888; margin-bottom: 24px; font-size: 14px; }

.form-group { margin-bottom: 16px; }

.form-group { text-align: right; }

.form-group label { display: block; margin-bottom: 6px; font-size: 14px; color: #333; }

.form-group input {
  width: 100%; padding: 10px 14px;
  border: 1px solid #ddd; border-radius: 8px;
  font-size: 15px; outline: none; text-align: right;
}

.form-group input:focus { border-color: #4f46e5; }

.login-btn {
  width: 100%; padding: 12px;
  background: #FAC94F; color: white;
  border: none; border-radius: 8px;
  font-size: 16px; cursor: pointer; margin-top: 8px;
}

.login-btn:hover { background: #E0AD26; }

.error {
  background: #fee2e2; color: #dc2626;
  padding: 10px; border-radius: 8px;
  margin-bottom: 16px; font-size: 14px;
}

.hidden { display: none; }

.brand {
  display: flex;
  flex-direction: column;   /* stack logo above the title */
  align-items: center;      /* center them horizontally in the card */
  gap: 12px;
  margin-bottom: 20px;
}
.logo {
  width: 96px;
  height: 96px;            /* equal sides — required for a true circle */
  border-radius: 50%;
  object-fit: cover;       /* crop to fill, don't distort */
  border: 3px solid #FAC94F;  /* brand ring (login.css has no CSS vars, so use the hex) */
  background: white;       /* hides jpeg's white corners */
}