/* admin-login.css - 관리자 로그인 페이지 스타일 */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans KR', sans-serif;
}

body {
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 500px;
  padding: 20px;
}

.login-container {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
  font-weight: 500;
}

.logo-container {
  text-align: center;
  margin-bottom: 30px;
}

.logo-text {
  background-color: #4a90e2;
  color: white;
  padding: 15px;
  font-size: 24px;
  font-weight: bold;
  border-radius: 4px;
  display: inline-block;
  min-width: 150px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #555;
}

input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s;
}

input:focus {
  outline: none;
  border-color: #4a90e2;
}

.btn-login {
  width: 100%;
  padding: 12px;
  background-color: #4a90e2;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-bottom: 20px;
}

.btn-login:hover {
  background-color: #3a7bc8;
}

.error-message {
  color: white;
  background-color: #e74c3c;
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px;
  padding: 10px;
  border-radius: 4px;
  display: none;
}

.login-help {
  margin-top: 20px;
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.login-help p {
  margin-bottom: 10px;
  color: #666;
  font-size: 14px;
}

.btn-secondary {
  padding: 8px 16px;
  background-color: #6c757d;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-secondary:hover {
  background-color: #5a6268;
}

.init-result {
  margin-top: 15px;
  font-size: 14px;
  padding: 10px;
  border-radius: 4px;
  background-color: #f8f9fa;
}

.debug-info {
  margin-top: 30px;
  border-top: 1px dashed #ddd;
  padding-top: 15px;
}

/* 디버그 로그 스타일 */
.debug-log {
  font-family: monospace;
  font-size: 12px;
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 4px;
  max-height: 150px;
  overflow-y: auto;
  color: #666;
}

.debug-log div {
  margin-bottom: 5px;
}
