body {
  margin: 0;
  padding: 0;
  background: #f5f7fa;
  font-family: 'Noto Sans KR', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#wrap {
  background: #fff;
  padding: 60px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  width: 400px;
}

#loginbox {
  text-align: center;
}

.login {
  font-size: 32px;
  color: #2e7d32; /* 관리자 느낌으로 안정적 그린톤 */
}

.box {
  margin: 15px 0;
  position: relative;
}

input.box {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input.box:focus {
  border-color: #2e7d32;
  box-shadow: 0 0 6px rgba(46, 125, 50, 0.3);
  outline: none;
}

.loginBtn {
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.loginBtn:hover {
  background: linear-gradient(135deg, #1b5e20, #0d3f11);
}

.saveId {
  text-align: left;
  margin-top: -10px;
}

.saveId input, .saveId label {
  cursor: pointer;
}

label[for="saveId"] {
  cursor: pointer;
}

#message {
  color: red;
  font-size: 14px;
  margin-top: 10px;
}

#togglePassword {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #999;
}
