/* Auth screen — login/register form */
.auth-container {
  max-width: 320px;
  margin: 80px auto;
  padding: 24px;
  text-align: center;
}

.auth-container h1 {
  font-size: 2rem;
  margin-bottom: 4px;
}

.auth-container .subtitle {
  color: #888;
  margin-bottom: 24px;
}

.auth-container input {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #555;
  border-radius: 4px;
  background: #1a1a2e;
  color: #e0e0e0;
  font-size: 14px;
  box-sizing: border-box;
}

.auth-container input:focus {
  border-color: #4CAF50;
  outline: none;
}

.auth-buttons {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.auth-buttons button {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

#btn-login {
  background: #4CAF50;
  color: white;
}

#btn-login:hover {
  background: #45a049;
}

#btn-register {
  background: #2196F3;
  color: white;
}

#btn-register:hover {
  background: #1e88e5;
}

.error-text {
  color: #ff5252;
  min-height: 20px;
  margin-top: 8px;
  font-size: 13px;
}
