
#header{
	height:200px;
	align-items:flex-end;
}

#header img{
	margin-bottom:30px;
}

.login .btn-login{
	padding:50px 0;
	font-size:20px;
	font-weight:500;
    line-height: 0;
}

.pd-all{
	width:80%;
	margin:0 auto;
	padding:0 !important;
}

.auto-login {
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: start; /* 왼쪽 정렬 */
  font-size: 16px;
  color: #555;
}

.auto-login-label {
  display: flex;
  align-items: stretch;
  cursor: pointer;
  position: relative;
  font-size: 16px;
  color: #333;
}

.auto-login-label input[type="checkbox"] {
  display: none; /* 기본 체크박스 숨기기 */
}

.auto-login-label .checkmark {
  width: 20px;
  height: 20px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  position: relative;
}

.auto-login-label input[type="checkbox"]:checked + .checkmark {
  background-color: #0096ff; /* 체크 시 배경색 */

}

.auto-login-label .checkmark::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s;
}

.auto-login-label input[type="checkbox"]:checked + .checkmark::after {
  opacity: 1;
}

.auto-login-label span {
  margin-left: 5px;
}

.btn-login.active{
	background:#0096ff;
}
/*splash*/

.splash-container{
	height:90vh;
	display:flex;
	align-items:center;
	flex-direction:column;
	justify-content:Center;
    opacity: 1;
    visibility: visible;
    transition: opacity 1s ease-out, visibility 1s ease-out;
}

.splash-message{
	font-size:18px;
	color:#00000059;
}

.join-link{
    display: flex;
    justify-content: center;
    margin-top: 15px;
    padding: 20px;
}

.join-link a{
    font-size: 15px;
    font-weight: 600;
    color: #1671cf;
}