/* login.css - 어두운 모드로 깔끔하고 세련된 로그인 페이지 스타일 */

.login-container {
  background: #1e1e1e;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  width: 320px;
  margin: 0 auto;  /* 좌우 중앙 정렬 (flexbox가 있으면 필요 없지만, 안전하게 auto 적용) */
}

.login-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.login-container input[type="text"],
.login-container input[type="password"] {
  width: 300px;
  padding: 0.75rem;
  margin: 0 2rem 1rem 0;
  border: none;
  border-radius: 5px;
  background: #333;
  color: #e0e0e0;
  font-size: 1rem;
}

.login-container input[type="button"] {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  background: #ff9800;
  color: #121212;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.login-container input[type="button"]:hover {
  background: #e68900;
}

.login-container .error {
  color: #ff5252;
  text-align: center;
  margin-top: 0.5rem;
}
