#title {
	display: flex;
	justify-content: center;
	background: var(--b1);
	border-radius: 10px;
	margin: 10px 10px 0 10px;
}
#title span {
	margin: 10px;
	font-size: 20px;
	font-weight: 900;
	color: white;
}

#login {
	display: flex;
	flex-direction: column;
	padding: 10px;
	width: calc(100% - 40px);
	background: var(--b1);
	margin: 10px 10px 0 10px;
	border-radius: 10px;
	gap: 10px;
}
#login .input_wrapper {
	display: flex;
	flex-direction: column;
	position: relative;
	width: 100%;
}
#login .input_wrapper span {
	color: white;
	margin: 10px 0;
	font-weight: 800;
}
#login .input_wrapper input {
	font-size: 16px;
	font-weight: 800;
	padding: 15px 40px 15px 50px;
	border-radius: 10px;
	border: 2px solid var(--inp);
	outline: none;
	background: var(--inp);
	color: white;
}
#login .input_wrapper .svg_one {
	position: absolute;
	left: 12px;
	bottom: 14px;
}
#login .input_wrapper #eye_svg,
#login .input_wrapper #eye_slash_svg,
#login .input_wrapper #eye_svg_1,
#login .input_wrapper #eye_slash_svg_1 {
	position: absolute;
	right: 10px;
	bottom: 14px;
}
#login button {
	border-radius: 10px;
	padding: 15px;
	background: var(--p);
	color: white;
	font-weight: 900;
	border: none;
}

#grade {
	font-weight: 900;
	padding: 10px 20px;
	border-radius: 10px;
	background: var(--inp);
	width: calc(100% - 40px);
	border: none;
	color: white;
}

#transfer_btns {
	display: flex;
	gap: 10px;
	width: 100%;
}
#transfer_btns button {
	width: 100%;
}

#reqs {
	display: flex;
	flex-direction: column;
	border-radius: 10px;
	background: var(--b1);
	color: white;
	gap: 10px;
	padding: 10px;
	margin: 10px;
}
#reqs > span {
	font-size: 18px;
	font-weight: 800;
}
#reqs .require {
	display: flex;
	align-items: center;
	gap: 5px;
}
#reqs .require span { font-size: 14px; }


