/* 기본 관리자 스타일 */
body {
  font-family: 'Noto Sans KR', sans-serif;
  background-color: #f4f6f9;
  margin: 0;
  padding: 0;
  color: #333;
}

.admin-container {
  max-width: 480px;
  margin: 80px auto;
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h2 {
  text-align: center;
  margin-bottom: 24px;
  color: #2c3e50;
}

.input-group {
  margin-bottom: 20px;
}

input[type="text"],
input[type="password"],
input[type="email"] {
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
}
textarea{
  width: 100%;;
}
a {
  text-decoration: none;
  cursor: pointer;
  color: #0167c1;
}
a:hover {
  font-weight: 500;
}

button {
  width: 100%;
  background: #3498db;
  border: none;
  padding: 12px;
  color: white;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease;
}

button:hover {
  background: #2980b9;
}

.text-center {
  text-align: center;
}

.link {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: #3498db;
  text-decoration: none;
}

.password-group {
  position: relative;
}

.password-group input[type="password"],
.password-group input[type="text"] {
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  user-select: none;
  font-size: 18px;
  color: #888;
}
.font-bold{
  font-weight: bold;
}
.font-color-black{
  color:#000;
}