.loginBox {
  position: relative;
  display: flex;
  height: 100vh;
}
/* .loginBox .bg { */
/*   background-image: url(../img/photo8.png); */
/*   background-position: center; */
/*   background-size: 100% 100%; */
/*   width: 50%; */
/*   height: 100%; */
/* } */
.loginBox .boxs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.loginBox .boxs > div {
  background-color: white;
  width: 430px;
  height: 455px;
  padding: 30px 25px 20px 25px;
  border: 1px solid lightgrey;
  border-radius:10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.loginBox .boxs .img-row {
  display: flex;
  gap: 15px; /* 이미지 사이 간격 */
  align-items: center; /* 수직 가운데 정렬 */
}
.loginBox .boxs .img-row img {
	margin-bottom:40px;
	width:170px;
}
.loginBox .boxs .img-row img:first-of-type {
	margin-top:8px;
}
.loginBox .boxs .logo {
  line-height: 1;
}
.loginBox .boxs .logo > img {
  width: 100%;
}
.loginBox .boxs .logo > img.dark {
  display: none;
}
.dark-mode .loginBox .boxs {
  background-color: #2D3236;
}
.dark-mode .loginBox .boxs .logo > img {
  display: none;
}
.dark-mode .loginBox .boxs .logo > img.dark {
  display: block;
}/*# sourceMappingURL=login.css.map */