* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #1A1A2E;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  background: #16213E;
  border-radius: 16px;
  padding: 40px 32px;
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.icon { margin-bottom: 16px; }

h1 { font-size: 26px; margin-bottom: 8px; }

.subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  margin-bottom: 32px;
  line-height: 1.5;
}

form { text-align: left; }

label {
  display: block;
  margin-bottom: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

input {
  width: 100%;
  margin-top: 6px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

input::placeholder { color: rgba(255,255,255,0.3); }
input:focus { border-color: #6C63FF; }

.error {
  display: block;
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 6px;
}

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; }

button {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: #6C63FF;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

button:hover { background: #5a52e0; }

.check {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(108,99,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-link {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 28px;
  border-radius: 12px;
  background: #6C63FF;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

/* Admin */
.admin-body { display: block; }

.admin-wrap { max-width: 900px; margin: 0 auto; width: 100%; }
.admin-wrap h1 { margin-bottom: 20px; }

.count {
  font-size: 14px;
  background: #6C63FF;
  padding: 2px 10px;
  border-radius: 12px;
  vertical-align: middle;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #16213E;
  border-radius: 12px;
  overflow: hidden;
}

th, td { text-align: left; padding: 14px 16px; font-size: 14px; }
th { background: rgba(108,99,255,0.2); font-weight: 600; }
td { color: rgba(255,255,255,0.8); border-top: 1px solid rgba(255,255,255,0.08); }

.empty { color: rgba(255,255,255,0.5); }