main.login {
	background-color: #13003F;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
	overflow: hidden;   /* 넘치는 자식 짤림 */
	position: relative; /* 반드시 필요 */
	
}

.login-container {
	background-color: #fff;
	padding: 100px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	width: 40%;
	max-width:800px;
	text-align: center;
	z-index: 1;
}

h2 {
	margin-bottom: 25px;
	color: #333;
}

.form-group {
	margin-bottom: 15px;
	text-align: left;
	margin: auto;
}

label {
	display: block;
	margin-bottom: 5px;
	width: 40%;
	font-weight: 500;
	font-size: 20px;
	line-height: 140%;
	display: flex;
	align-items: center;
	text-align: center;
	letter-spacing: -0.025em;
	color: #111111;
}

input[type="text"], input[type="password"], input[type="email"] {
	width: calc(100% - 22px);
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
}

.blue-btn {
	width: 100%;
	padding: 12px;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 18px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	font-weight: 600;
}

.blue-btn:hover {
	background-color: #0056b3;
}

.error-message {
	color: #dc3545;
	margin-top: 15px;
	font-weight: bold;
}

#login-img {
	position: absolute;
	right: 10%;
	z-index: 0;
}

.login-form-group {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	margin: auto;
	margin-bottom: 2rem;
}

#login-btn {
	width: 72%;
}

.save-id {
	width: 100%;
}

/*signup*/
main.signup {
	background: white;
	padding: 10rem;
}

.signup-title {
	text-align: center;
	font-weight: 700;
	/* margin-bottom: 5rem; */
}

#signupForm {
	max-width: 1000px;
	margin: auto;
}

.signup-form-group {
	display: flex;
	border-bottom: 1px solid #cecece;
	padding: 20px 0px;
}

.help-text {
	display: block;
}

.input-wrapper {
	width: 100%;
}

.input-wrapper * {
	width: 100% !important;
}

.input-group-custom {
	width: 100%;
	gap: 10px;
	display: flex;
}

.input-group-custom .input-field {
	width: 100%;
}

.input-group-custom input {
	flex: 7;
}

.input-group-custom button {
	flex: 3;
}

.gray-box {
	overflow-y: auto;
	padding: 1rem 2rem;
	max-width: 1000px;
	height: 169px;
	background: #F6F6F6;
	border-radius: 8px;
}

.policy-box {
	display: flex;
	flex-direction: row;
	margin-top: 1rem;
	align-content: center;
	align-items: center;
}

.checkbox-label {
	font-size: 1rem;
	margin-left: 0.5rem;
}

.button-wrapper {
	width: 100%;
	display: flex;
	margin-top: 1rem;
}

.btn-submit-custom {
	width: 300px;
	margin: auto;
	text-align: center;
}




.login-bottom .form-check{
	display:flex;
	align-items: flex-start;
}


.auth-modal-tab-content{
	display:block !important;
}


@media (max-width:1280px){



	.login-container{

	padding:3rem 2rem;	
	}

	#login-img{
		right:-10%;
	}

	main.signup{
		padding:4rem;
		margin-top: 5rem;
	}
}


@media (max-width:1000px){
	.login-container{
width:70%;
	padding:5rem 4rem;	
	}

	#login-img{
		right:-10%;
	}
}


@media (max-width:780px){

	.login-container{
		width:80%;	
	}

	#login-img{
		display:none;
		
	}
	
.login-bottom {
	flex-direction:column;
}

	main.signup{
		padding:1.5rem;
		margin-top: 5rem;
	}

	.checkbox-label{
		width:100%;
		
	}

	.signup-form-group{
		flex-direction:column;
		padding: 40px 0px;
	}
	
	.signup-form-group label {
		font-size:1rem;
		width:100%;
		
		
}

	.input-group-custom{
	flex-direction:column;	
	}
}


