
header {
	background: var(--color-main);
	min-height: 10px !important;
}


body {
    display: block;
    min-height: auto;
}


main {
	flex: 1;	
	padding: 0 !important;
}

h2 {font-weight: normal;}


/******** footer *******/

footer {
	background-color: transparent !important;
	background-image: url("../images/loginBottomBG.png"); /* 배경 이미지 지정 */
	background-size: contain; /* 배경을 전체 크기에 맞춤 */
	background-position: center; /* 가운데 정렬 */
	background-repeat: repeat-y; /* 반복 방지 */
	font-size: 0.75rem;	
	padding: 0 !important;
}

footer big {font-size: 1.5em !important;}

footer .text-point {color: #f8c041 !important;}

.foot-l {padding: 30px 60px; background: #178952;}
.foot-r {padding: 30px; background: #ebebeb;}



/*720 부터*/
@media (min-width: 720px) {
	header {padding: 0;}
	
	.topLogo {text-align: center; padding: 50px 0 20px;}
	.topLogo img {height: 95px; margin-top: 20px;}
	
	footer {margin-top: 0;}
	
}

/*720 이하*/

@media (max-width: 720px) {
	header {padding: 0;}
	
	main {padding:0;}
	
	footer {margin-top: 0;}
	.foot-l {padding: 30px;}
	
	.topLogo {text-align: center; padding: 20px 0 10px;}
	.topLogo img {height: 40px;}
	
}


