* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'poppins', sans-serif;
}

.container{
	/* background-color: rgb(133, 175, 133); */
	width: 100%;
	/* height: 100vh; */
	overflow: hidden;
	/* display: flex; */
	
	
}
.header{
	width: 100%;
	height: 60px;
	/* background-color: blue	; */
	background-image: url(../image/header.png);
}

  .errormsg{
	font-size: 12px;
	color: red;
	display: none	;
  }
  .card{
	width: 100%;
	height: 80vh;
	background-color:#E2F6FA;
	/* background-color: #EFFAFD; */
	background-image: url(../image/china2.jpg);
	padding: 20px;
	display: flex;
	justify-content: space-between;
  }
  .box{
	width: 30%;
	height: 100%;
	background-color: rgb(255, 255, 255);
	border-radius: 8px;
	margin-right: 150px;
	overflow: hidden;
	
  }
  .top{
	display: flex;
	background-color: rgb(255, 255, 255);
	/* height: 54px; */
	padding: 18px;
	padding-left: 40px;
	/* padding-right: 40px; */
	align-items: center;
	justify-content: space-between;
	/* gap: 40px; */
	border-bottom: rgb(230, 223, 223) solid 1px;
	border-radius: 8px 8px 0 0;
  }
  .top p{
	color: rgb(100, 96, 96);
	width: 100%;
	font-size: 14px;
	flex-wrap: nowrap;
  }
  .form{
	width: 100%;
  }
  form{
	display: flex;
	flex-direction: column;
	padding: 25px;
  }
  form input{
	padding: 10px 20px;
	margin-bottom: 8px;
	border-radius: 4px;
	width: 98%;
	font-size: 14px;
	border: rgb(187, 180, 180) 1px solid;

  }
  .check{
	display: flex;
	gap: 10px;
	align-items: center;
  }
  .check input{
	margin-top: 10px;
	/* width: 50px; */
  }
  .check p span{
	flex-wrap: nowrap;
	color: white;
  }
 

  .tick{
	display: flex;
	/* background-color: blue; */
	align-items: center;
	justify-content: space-between;
	height: min-content;
	width: 98%;
	
  }
  .tick p{
	font-size: 14px;
	/* flex-wrap: nowrap; */
	color: rgb(134, 132, 132);
	font-weight: 100;
  }
  button{
	padding: 10px 20px;
	border-radius: 8px;
	border: none;
	background-color: rgb(241, 80, 80);
	color: white;
	width: 98%;
	margin-top: 10px;
  }
  .flex{
	display: flex;
	/* background-color: aqua; */
	gap: 5px;
	margin-top: 10px;
	color: rgb(134, 132, 132);
	font-size: 14px;
  }
  .flex p span{
	color: rgb(94, 126, 187);
  }
  .flex input{
	width: 8%;
	margin-bottom: 20px;
  }
  .foot{
	width: 100%;
	height: 80px;
	/* background-color: blue; */
	/* bottom: 100%; */
	margin-top: auto;
	/* background-image: url(../image/foot.png); */
	background-repeat: no-repeat;
	background-size: contain; /* Or use 'cover' */
	background-position:center;
  }

  .footer{
	width: 100%;
	height:40vh;
	/* background-color: blue	; */
	background-image: url(../image/footer.png);
  }
  .errormsg{
	font-size: 12px;
	color: red;
	display: none	;
  }
  .center{
	display: flex;
	align-items: center;justify-content: center;
	margin-top: 10px;
	
  }

 @media screen and (max-width: 768px){
	.header{
		display: none;
	}
	.footer{
		display: none;
	}
	.foot{
		display: none;
	}
	.top{
		align-items: center;
		justify-content: center;
		text-align: center;
		padding: 16px;
		padding-top: 30px;
	}
	
	.card{
		background-image: none;
		background-color: white;
		flex-direction: column;
		padding: 0;
		width: 100%;
	}
	.box1{
		display: none;
	}
	.box{
		width: 100%;
		padding: 0;
		/* background-color: blue; */
	}
	.show{
		display: none;
	}
  }
  
  