@font-face
{
	font-family: "Bahnschrift";
	src: url("https://global.ecdn.ltd/ync/fonts/bahnschrift.ttf");
}

body
{
	background: #FFFFFF;
	font-family: "Bahnschrift";
	overflow-x: hidden;
	height: 100%;
	color: #333;
}

html, body
{
	margin: 0;
	padding: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.account_container
{
	flex: 1; /* Footer will not float even with sufficient contents */
	display: flex;
	flex-direction: row;
	height: 100vh;
	overflow: hidden;
	margin-top: 5.8rem;
}

.account_img_bg_area
{
	position: relative;
	height: calc(100vh - 5.8rem);
	width: 60%;
	overflow: hidden;
}

.account_img_bg_area img
{
	width: 100%;
	height: 100vh;
	object-fit: cover;
	display: block;
}

/* Reference: https://developer.mozilla.org/en-US/docs/Web/CSS/clip-path */
.account_img_bg_area::after
{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: white;
	clip-path: polygon(100% 0, 100% 100%, 70% 100%);
	pointer-events: none;
	z-index: 2;
}

.account_form_area
{
	width: 40%;
	background-color: white;
	position: relative;
	z-index: 10;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 2rem;
}

.login_form_area
{
	width: 60%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 1.5rem;
	margin-right: 8rem;
}

.login_form_title
{
	font-size: 2.5rem;
	font-weight: bold;
	color: #333;
	text-align: right;
	margin-bottom: 0.5rem;
}

.login_links a
{
	display: inline-block;
	margin-right: 0.5rem;
	text-decoration: none;
	color: #609CD4;
}

.login_links a:hover
{
	color: #FF0000;
}

.login_links a:visited, .login_links a:checked
{
	color: #8B00FF;
}

.login_links a:last-child
{
	margin-right: 0;
}

#text_theme_color
{
	display: inline;
	color: #609CD4;
}

@media (max-width: 1380px)
{
	.account_container
	{
		flex-direction: column;
		height: calc(100vh - 5.8rem);
		position: relative;
	}

	.account_img_bg_area
	{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 0;
	}

	.account_img_bg_area img
	{
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}

	.account_img_bg_area::after
	{
		display: none;
	}

	.account_form_area
	{
		width: 100%;
		height: 100%;
		position: relative;
		z-index: 1;
		background-color: rgba(255, 255, 255, 0.5);
		display: flex;
		justify-content: center;
		align-items: center;
		margin-bottom: 0;
		padding-bottom: 2rem;
	}
	
	.login_form_area
	{
		width: 100%;
		height: auto;
		margin-right: 0;
		padding: 0 3rem;
	}
}
