/* Full-width input fields */
input[type=text], input[type=password] {
	width: 100%;
	padding: 7px;
	margin: 3px 0;
	display: inline-block;
	border: 1px solid #ccc;
	box-sizing: border-box;
	font-size:20px;
}

/* Set a style for all buttons */
/*login */
.login-btn {
	color: white;
	padding: 10px 20px;
	border: none;
	width: 100%;
	
    font-size: 16px;
	font-weight : bold;
	letter-spacing : 2px;
	
	/* fallback for old browsers */
	background: #000000;  
	
	/* Chrome 10-25, Safari 5.1-6 */
	background: -webkit-linear-gradient(270deg, #000000, #5D5D5D);  
	
	/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	/*background: linear-gradient(0deg, #445760, #445760);*/
	/* ie11에서 문제가 있을 경우 = -ms- 붙여주고 0deg 대신 to bottom으로 바꾼다. */
	background: -ms-linear-gradient(to bottom, #000000, #5D5D5D);
	
    cursor: pointer;
    transition: opacity 0.3s; /* 부드러운 전환 효과 */
}

.login-btn:hover:not([disabled]){
	cursor: pointer;
	
	opacity: 0.93; /* 투명도를 50%로 설정 */

}

.login-btn:disabled {
	opacity: 0.3; /* 투명도를 50%로 설정 */
	cursor: default;
}


.container {
	padding: 21px 21px 1px 21px;
}

.container *:hover:not([disabled])
{
	cursor:pointer;
}


.access_option{
	padding-left: 13px;
	border : 0px solid red;
	height : 46px;
	line-height : 40px;
}



.option-group1{

	display: inline-block;
	width : 88px; 
	height : 36px;
	line-height : 36px;
	text-align : center;
	font-size : 11px;
	font-weight : bold;
	
	
	/* fallback for old browsers */
	background: #BDBDBD;  
	
	/* Chrome 10-25, Safari 5.1-6 */
	background: -webkit-linear-gradient(0deg, #BDBDBD, #BDBDBD);  
	
	/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	background: linear-gradient(0deg, #BDBDBD, #BDBDBD);
	
	
	letter-spacing : 2px;
	border-radius: 2px;
	color: white;
	
	cursor: pointer;

}

.option-group-select-style
{
	background : linear-gradient(180deg,#000000, #5D5D5D);
}

.flex-center{
	display: flex; 
	justify-content: center;
	align-items : center;
}


/* Center the image and position the close button */
.imgcontainer {
	position: relative;
}


/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
	padding-top: 30px;
	border : 0px solid red;
	
}

/* Modal Content/Box */
.modal-content {
	background-color: #fefefe;
	margin: 4px auto 0px auto; /* 5% from the top, 5% from the bottom and centered */
	border: 1px solid #888;
	width: 28%; /* Could be more or less, depending on screen size */
	min-width: 320px;
	max-width: 320px;
	border-radius: 10px;
}

/* The Close Button (x) */
.close {
	position: absolute;
	right: 25px;
	top: 0;
	color: #000;
	font-size: 35px;
	font-weight: bold;
}

.close:hover{
	color: red;
	cursor: pointer;
}

#login-field{
	position : absolute;
}

