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

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  background: #151515;
  border: 1px solid #252525;
  border-radius: 16px;
  padding: 40px;
  max-width: 420px;
  width: 90%;
}

h1 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 6px;
}

.subtitle {
  color: #888;
  font-size: 14px;
  margin-bottom: 28px;
}

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

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 10px 12px;
  background: #0a0a0a;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  margin-bottom: 14px;
  outline: none;
  transition: border-color 0.2s;
}

input:focus {
  border-color: #fff;
}

.btn {
  width: 100%;
  padding: 12px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.9;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.error {
  background: #2a1010;
  border: 1px solid #5c2020;
  color: #ff6b6b;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 14px;
  display: none;
}

.link {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: #888;
}

.link a {
  color: #fff;
  text-decoration: none;
}

.link a:hover {
  text-decoration: underline;
}

.banned-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.reason-box {
  background: #1a1010;
  border: 1px solid #3a2020;
  border-radius: 8px;
  padding: 12px;
  margin: 16px 0;
  font-size: 13px;
  color: #cc8888;
}
