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

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f0f4f8;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Login Page ── */
.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2rem;
}

.login-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.warning-banner {
  background: #fff3cd;
  border: 1px solid #f0ad4e;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  color: #856404;
  text-align: center;
  margin-bottom: 1.25rem;
}

.logo {
  font-size: 36px;
  font-weight: 700;
  color: #c0392b;
  text-align: center;
  margin-bottom: 0.25rem;
}

.login-card h2 {
  text-align: center;
  font-size: 18px;
  color: #222;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

label {
  display: block;
  font-size: 13px;
  color: #555;
  margin-bottom: 5px;
}

input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 1rem;
  background: #fafafa;
}

input:focus {
  outline: none;
  border-color: #c0392b;
}

button {
  width: 100%;
  padding: 11px;
  background: #c0392b;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

button:hover {
  background: #a93226;
}

.footer-note {
  font-size: 11px;
  color: #aaa;
  text-align: center;
  margin-top: 1rem;
}

/* ── Awareness Page ── */
.awareness-wrapper {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  max-width: 620px;
  width: 100%;
  margin: 2rem auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.caught-banner {
  background: #e74c3c;
  color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.caught-banner h1 {
  font-size: 24px;
  margin-bottom: 6px;
}

.caught-banner p {
  font-size: 14px;
  opacity: 0.9;
}

.good-news {
  background: #eafaf1;
  border-left: 4px solid #27ae60;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  color: #1e8449;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.awareness-wrapper h3 {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  margin-bottom: 1rem;
}

.flag {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.flag-num {
  background: #e74c3c;
  color: #fff;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

.flag-text {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.flag-text strong {
  color: #222;
}

.tip-box {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px;
  color: #555;
  margin-top: 1.5rem;
  line-height: 1.6;
}

.try-again {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  color: #c0392b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.try-again:hover {
  text-decoration: underline;
}
