@charset "utf-8";

body{
	background:#000;
	margin:0;
	padding:0;
}
#page{
	margin:40px auto;
	width:1200px;
	height:800px !important;
	background: url('/images/%EB%9E%9C%EB%94%A9%ED%8E%98%EC%9D%B4%EC%A7%80%20%EC%A0%84%EC%B2%B4%ED%99%94%EB%A9%B4.jpg') no-repeat center top;
	position:relative;
}
#page > input[name=id]{
	width:360px;
	height:48px;
	position:absolute;
	top:250px;
	left:728px;
	background:transparent;
	border:1px solid #ccc;
}
#page > input[name=pw]{
	width:360px;
	height:48px;
	position:absolute;
	top:330px;
	left:728px;
	background:transparent;
	border:1px solid #ccc;
}
#page > .submit{
	width:167px;
	height:48px;
	cursor:pointer;
	position:absolute;
	top:459px;
	left:770px;
}

/* login page 수정 2023.01.27 */
.login-register {
	background-image: url(/images/login_background_white.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100vh;
    width: 100%;
    padding: 0;
    position: fixed;
}
.login-sidebar {
    padding: 0px;
    margin-top: 0px;
}
.login-sidebar .login-box {
    right: 0px;
    position: absolute;
    height: 100%;
}
.login-box {
    width: 400px;
    margin: 0 auto;
	background-color: rgb(255 255 255 / 0.5);
    padding-top: 15%;
}
.form-material > h1 {
	margin-bottom: 20px;
    font-size: xxx-large;
    font-weight: 900;
}
input.form-control{
	color: #67757c;
    min-height: 50px;
    display: initial;
	font-size: 1.1rem;
	margin-bottom: 10px;
	
}
.btn-info{
	font-size: 1.2rem;
	color: #FFF;
}
/*
.form-material .form-control {
    background-color: rgba(0, 0, 0, 0);
    background-position: center bottom, center calc(100% - 1px);
    background-repeat: no-repeat;
    background-size: 0 2px, 100% 1px;
    padding: 0;
    transition: background 0s ease-out 0s;
}
.form-material .form-control, .form-material .form-control.focus, .form-material .form-control:focus {
    background-image: linear-gradient(#20aee3, #20aee3), linear-gradient(#e9edf2, #e9edf2);
    border: 0 none;
    border-radius: 0;
    box-shadow: none;
    float: none;
}
*/

@media (max-width: 767px) {
	@media (orientation: portrait) {
		.form-material{
			padding-top: 25%;
		}
		.login-register {
			/* background-image: url(/images/login_background_white2.jpg); */
			position: relative;
			overflow: hidden;
		}
		.login-sidebar {
			padding: 10% 0;
		}
		.login-sidebar .login-box {
			position: relative;
		}
		.login-box {
			width: 90%;
			padding-top: 5%;
			height: 80% !important;
		}
	}
	@media (orientation: landscape) {
		.form-material{
			padding-top: 0;
		}
		.login-register {
			/* background-image: url(/images/login_background_white2.jpg); */
			position: relative;
			overflow: hidden;
		}
		.login-sidebar {
			padding: 10% 0;
		}
		.login-sidebar .login-box {
			position: relative;
		}
		.login-box {
			width: 90%;
			padding-top: 0;
			height: 80vh !important;
		}
	}
}
/* login page 추가 끝 */