#bg-color {
	position: absolute;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	background: var(--white);/*linear-gradient(20deg, #15399e91,#9b9b9b91);/*#15399E40;*/
	z-index: -1;
	backdrop-filter: blur(0px);
}

#main {
	background: none;

	height: 100vh;
	width: 100vw;
	overflow-y: auto;
	overflow-x: hidden;
	margin-left: 0px;
	margin-top: 0px;
	border-bottom: 1px solid #fff;
	padding: 0.1px;
	background-image: url('../ig/back/leaves.svg');
	background-size: 70vh;
	background-position: right bottom;
	background-repeat: no-repeat;
}

/***************************************/
#content-box {
	width: max-content;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	height: max-content;
	margin: auto;
	margin-top: 24vh;
	gap: 100px;
}

#signin-form {
	width: max-content;
	display: flex;
	flex-direction: column;
}

#signin-form input {
	border: 0px;
	padding: 14px;
	outline: none;
	margin-top: 10px;
	width: 272px;
	border-radius: 8px;
	background: var(--primary100, #CEDEFA);
	color: var(--primary600, #DB8500);
	font-family: var(--inter3);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
#signin-form input:nth-child(1) {
	margin-top: 4px;
}
#signin-form input:focus {
	transform: rotate(-3deg);
}
#signin-btn {
	width: 300px;
	padding: 10px 50px;
	text-align: center;
	border-radius: 8px;
	background: var(--primary600, #0F2B87);
	color: #FFF;
	font-family: var(--inter1);
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	border: 0px;
	margin-top: 15px;
	cursor: pointer;
	transition: 0.5s ease-in-out;

}
#signin-form #signin-btn:hover {
    background-color: #4A5888;
}
#signin-form #see-type-btn {
	display: flex;
	padding: 12px;
	border: 0px;
	text-align: center;
	border-radius: 8px;
	background-color: #fff0;
	color: var(--primary700);
	padding-left: 45px;
	background-image: url('../ig/icon/EyeOutline.svg');
	background-size: 22px;
	background-position: 10px 10px;
	background-repeat: no-repeat;
	width: max-content;
	position: absolute;
	right: -60px;
	top: 65px;
	cursor: pointer;
	width: 100px;
}

#signin-form h2 {
	color: var(--primary600, #0F2B87);
	font-family: var(--inter1);
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin-top: 10px;
}
#signin-form h2 a {
	color: var(--primary700, #0A2071);
	font-family: var(--inter3);
	font-size: 13px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin-left: 10px;
}


#text-content {
	gap: 8px;
	display: flex;
	flex-direction: column;
}


#text-content h2 {
	font-size: 16px;
	font-family: var(--inter1);
	font-weight: 500;
	padding-left: 25px;
	background-image: url('../ig/icon/negativeOutline.svg');
	background-size: 18px;
	background-position: 0px -4px;
	background-repeat: no-repeat;
	color: var(--primary500);
}

#text-content h1 {
	color: var(--primary800, #06165B);
	font-family: var(--inter4);
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

#text-content p {
	color: var(--primary800, #06165B);
	font-family: var(--inter2);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
#msgprint {
    font-size: 16px;
    font-weight: 200;
    color: #604700;
    margin-top: 10px;
}

