
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
	body{
		width: 100%;
		background-color: #f2f2f2;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding-top: 50px;
		padding-bottom: 50px;;
		color: #353535;
		font-family: "Poppins", sans-serif;

	}	
	.signupform{
		width: 80%;
		padding: 10px;
		background-color: white;
		text-align: center;
	}
	form .inputs{
		width: 100%;
		display: flex;
		text-align: left;
	}
	h2{
		margin-top: 10px;
		margin-bottom: 20px;
	}
	form h4{
		margin-top: 30px;
	}
	.inputs label{
		font-size: 12px;
	}
	.leftcoloum,.rightcoloum{
		width: 50%;
		padding: 15px;
	}
	.leftcoloum{
		border-right: 1px solid #cccccc;
	}
	.leftcoloum .text{
		width: 90%;
		height: 30px;
		margin-bottom: 10px;
		padding-left: 10px;
	}
	
	.rightcoloum select{
		width: 90%;
		height: 30px;
		margin-bottom: 10px;
		padding-left: 10px;
	}
	.text{
		width: 90%;
		height: 30px;
		margin-bottom: 10px;
		padding-left: 10px;
	}
	.submitbtn{
		width: 50vh;
		height: 30px;
		border: none;
		outline: none;
		color: white;
		background-color: #f04d6a;
		border-radius: 5px;
		margin-top: 10px;
		margin-bottom: 20px;
		cursor: pointer;
	}
	.submit{
		padding-left: 20px;
		text-align: left;
		font-size: 14px;
	}


	table{
			width: 90%;
			border: 1px solid black;
			max-height: 80vh;
			overflow: scroll;
		} 
		table tr,td,th{
			height: 8vh;
		}
		tr:nth-child(odd) {
			background-color: #E7E9EB;
		}
		td{
			text-align: center;
		}
		table th{
			background-color: blue;
			color: white;
			height: 8vh;
		}