@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@1,300&display=swap'); 
*{
	padding: 0;
	margin: 0;
	border-sizing:border-box ;
}
body{
	font-family: 'kanit';
}
.outer-box
{
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(to top left,#3ed8ff,#a8f5ee);
	top:40px;
}
#img
{
	margin-top: 10%;
	padding: 25px;
	height: 350px;
	width: 250px;
	top: 10px;
	display: block;
}
#img
{
	position: relative;
}
.inner-box
{
	width: 400px;
	margin: 0 auto;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	padding: 20px 40px;
	background-color: #ffffffac;
	backdrop-filter: blur(8px);
	border-radius: 8px;
	box-shadow: 2px 2px 5px #2773a5;

}
.signup-header h1
{
	font-size: 2.5rem;
	color: #212121;
	top: 15%;
}
.signup-header p
{
	font-size: 0.9rem;
	color: #555;
}
.signup-body {
	margin: 20px 0;
}
.signup-body p{
	margin: 20px 0;
}
.signup-body p lable
{
	display: block;
}
#submit
{
	background-color: #3498bd;
	border: none;
	color: white;
	cursor: pointer;
}
.signup-body p input
{
	width: 100%;
	padding: 10px;
	border: 2px solid #ccccc;
	border-radius: 4px;
}
.signup-body p input[type="Submit"]
{
	background-color: #3498db;
	border: none;
	color: white;
	cursor: pointer;
}
.signup-body p input[type="submit"]:hover{
	background-color: #2773a5;

}
.signup-footer p{
	color: #555;
	text-align: center;
}
.signup-body p input a{
	color: #2773a5;
}
