@charset "UTF-8";

#login-page {
	width: 100%;
	position: relative;
	min-height: 100vh;
	display: flex;
	justify-content: center;
}

#login-page .container {
	position: absolute;
	top: 245px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#login-page .logo {
	display: flex;
	flex-direction: column;
	padding: 8px 0px;
	gap: 8px;
	margin-bottom: 70px;
}

#login-page .bizLaw {
	font-size: 40px;
	color: #3578F6;
	font-weight: 700;
	cursor: pointer;
}

#login-page .logo-title {
	font-size: 18px;
	color: #8A8A8D;
}

#login-page .login-title {
	font-family: Noto Sans;
	font-size: 28px;
	font-weight: 700;
	line-height: 30px;
	text-align: left;
	padding: 8px 0px;
	margin-bottom: 33px;
}

#login-page .input-wrap {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

#login-page .input-wrap input {
	width: 100%;
	height: 50px;
	padding: 10px 14px;
	box-sizing: border-box;
	outline: none;
	border: 1px solid #D3D8E0;
	box-sizing: border-box;
	border-radius: 8px;
	font-family: Noto Sans;
	font-size: 16px;
	font-weight: 500;
	text-underline-position: from-font;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none;
}

#login-page .warning {
	visibility: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	color: red;
	height: 38px;
	line-height: 30px;
}

#login-page .input-btn {
	box-sizing: border-box;
	width: 460px;
	height: 50px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	border-radius: 8px;

	background-color: #3578F6;
	color: white;
	font-size: 18px;
	margin-bottom: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#login-page .auth-section {
	display: flex;
	justify-content: flex-end;
	gap: 22px;
	font-size: 16px;
}

#login-page .find-password {
	cursor: pointer;
}

#login-page .sign-up {
	cursor: pointer;
	color: #3578F6;
}

@media ( max-width : 767px) {
	#login-page .bizLaw {
		font-size: 40px;
		line-height: 30px;
	}
	#login-page .logo-title {
		font-size: 18px;
		line-height: 30px;
	}
	#login-page .container {
		top: 40px;
		width: 80%;
	}
	#login-page .login-title {
		margin-bottom: 10px;
	}
	#login-page .input-btn {
		width: 100%;
	}
	#login-page .login-title {
		font-size: 20px;
	}
	
}