/* Password gate form styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.container {
  text-align: center;
  padding: 40px;
  background: #2a2a2a;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

h1 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 24px;
}

p {
  color: #aaa;
  margin: 0 0 30px;
  font-size: 14px;
}

input[type="password"] {
  width: 100%;
  max-width: 280px;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #444;
  border-radius: 4px;
  background: #333;
  color: #fff;
  text-align: center;
}

input[type="password"]:focus {
  outline: none;
  border-color: #666;
}

button {
  margin-top: 15px;
  padding: 12px 32px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  background: #007acc;
  color: #fff;
  cursor: pointer;
}

button:hover {
  background: #005a9e;
}

.error {
  color: #ff6b6b;
  margin-top: 15px;
  font-size: 14px;
}
