/* 헤더 검정 배경 */
.header {
  background: #222;
}

.header .logo a,
.header .nav-list > li > a,
.header .user-menu a {
  color: #fff;
}

.header .nav-list > li > a:hover {
  color: #f0c14b;
}

/* 로그인 섹션 */
.login-section {
  min-height: calc(100vh - 350px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}

.login-container {
  width: 100%;
  max-width: 500px;
  padding-top: 120px;
}

.login-title {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.login-subtitle {
  text-align: center;
  font-size: 20px;
  color: #222;
  margin-bottom: 50px;
}

.login-form .form-group {
  margin-bottom: 25px;
}

.login-form label {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

.login-form label .required {
  color: #e74c3c;
  margin-left: 2px;
}

.login-form input[type="email"],
.login-form input[type="password"] {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}

.login-form input:focus {
  border-color: #333;
}

/* 알림 메시지 */
.alert {
  padding: 12px 16px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 14px;
}

.alert ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.alert-error {
  background: #fdf0f0;
  color: #e74c3c;
  border: 1px solid #f5c6cb;
}

.alert-success {
  background: #f0fdf4;
  color: #27ae60;
  border: 1px solid #c3e6cb;
}

/* 로그인 상태 유지 */
.remember-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.remember-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.remember-group label {
  font-size: 14px;
  color: #555;
  cursor: pointer;
  margin-bottom: 0;
}

.btn-login {
  width: 100%;
  padding: 18px 0;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 10px;
}

.btn-login:hover {
  background: #444;
}

.login-footer {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #666;
}

.login-footer a {
  color: #222;
  font-weight: 600;
  text-decoration: none;
  margin-left: 5px;
}

.login-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .login-title {
    font-size: 28px;
  }

  .login-section {
    padding: 60px 20px;
  }
}
