/* 로그인 폼 중앙 정렬 및 로고 크기 조정 */
#login {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  min-height: 100vh !important;
}

#login form {
  width: 100% !important;
  max-width: 400px !important;
  padding: 2rem !important;
  text-align: center !important;
}

/* 로고 크기 키우기 */
#login img {
  width: 200px !important;
  height: auto !important;
  max-width: 100% !important;
  margin-bottom: 2rem !important;
}

/* h1 스타일링 */
#login h1 {
  margin-bottom: 2rem !important;
  font-size: 1.5rem !important;
}

/* 입력 필드 간격 */
#login input.input {
  margin-bottom: 1rem !important;
}

/* 버튼 스타일 개선 */
#login input.button {
  margin-top: 0.5rem !important;
  padding: 0.75rem !important;
  font-size: 1rem !important;
}