@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Noto+Sans+TC:wght@400;500;600&display=swap");

* {
	padding: 0;
	margin: 0;
	font-family: "Montserrat", sans-serif;
}

:root {
	--pirmary-color: rgba(0, 0, 0, 0.7);
	--pirmary-font-size: 1rem;
}

body {
	padding: 0;
}

.bg-image {
	width: 100%;
	height: 100vh;
}

#sections {
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
}

.left-section {
	height: 100%;
	flex-basis: 60%;
	position: relative;
}

.left-section h1 {
	color: #091931;
	font-size: 4.5vw;
	font-weight: 700;
	position: absolute;
	top: 15rem;
	left: 2rem;
	line-height: 1.3;
}

.right-section {
	position: relative;
	flex-basis: 40%;
}

.logo img {
	width: 16vw;
}

h2 {
	font-weight: 700;
	color: var(--pirmary-color);
}

p,
label {
	margin: 0;
	font-weight: 400;
	color: var(--pirmary-color);
	font-size: var(--pirmary-font-size);
}

.primary-link {
	color: var(--pirmary-color);
	font-size: var(--pirmary-font-size);
}

.form-container {
	padding: 0 60px;
	overflow-y: scroll;
	height: 85vh;
}

form {
	margin: 20px 0 0 0;
}

.input-container {
	margin: 0 0 15px 0;
	position: relative;
}

.input-container input {
	width: 100%;
	border: 1px solid rgba(0, 0, 0, 0.3);
	font-size: 1vw;
	padding: 2px 10px;
	border-radius: 5px;
}

.small-text {
	font-size: 10px;
	color: rgba(0, 0, 0, 0.4);
	text-decoration: none;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 5px;
}

.small-text img {
	width: 1rem;
}

label[for="remember-me-input"] {
	white-space: nowrap;
}

input[type="checkbox"] {
	-moz-appearance: none;
	-webkit-appearance: none;
	outline: none;
	content: none;
	border: none;
	padding: 0 !important;
	margin: 0;
}

input[type="checkbox"]:before {
	content: "✓";
	font-size: 15px;
	color: transparent !important;
	background: transparent;
	display: flex;
	width: 20px;
	height: 20px;
	border: 1px solid rgba(0, 0, 0, 0.3);
	border-radius: 3px;
	margin-right: 7px;
	align-items: center;
	justify-content: center;
	padding: 0;
}

input[type="checkbox"]:checked:before {
	color: white !important;
	background: #0d6efd;
	border: none;
}

#verification-container {
	flex-wrap: nowrap;
}

a {
	color: #76a5d2;
	font-size: 1rem;
}

#verification-button {
	font-size: 0.65rem;
	background-color: transparent;
	border: 1px solid rgba(0, 0, 0, 0.3);
}

.checkbox-container .small-text {
	color: rgba(0, 0, 0, 0.6);
	font-size: 1vw;
}

.custom-primary-button {
	background-color: #091a2e;
	border: none;
	padding: 5px 30px;
	color: white;
	font-weight: 600;
	border-radius: 100px;
}

#alert-toast {
	position: fixed;
	top: 5px;
	right: 15px;
	background-color: #a2c99e;
}

.destructive {
	background: #fbc1c0 !important;
}

.show-hide-password-button {
	font-size: 12px;
	white-space: nowrap;
}

@media only screen and (max-width: 1023px) {
	.left-section {
		flex-basis: 100%;
		display: none;
	}

	.logo img {
		width: 30vw;
	}

	.right-section {
		flex-basis: 100%;
		margin: 20px 0 0 0;
	}

	.bg-image {
		height: auto;
	}

	#verification-container {
		flex-wrap: wrap;
	}

	#verification-button {
		padding: 10px;
	}

	.form-container {
		height: auto;
	}

	.input-container input {
		font-size: 18px;
		padding: 8px 10px;
	}
}
