*{
	text-decoration: none;
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	box-sizing: border-box;
}

body{
	min-height: 10vh;
	background: linear-gradient(60deg,#3498db,#8e44ad); 
}

.container{
	display: flex;
	justify-content: center ;
}
.sign__box{
	padding: 60px 40px;
	border-radius: 10px;
	background: #f1f1f1;
	width: 600px;
	height: 550px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.sign__box h1{
	text-align: center;
	font-size: 40px;
	border-bottom: 6px solid #333;
	margin-bottom: 50px;
	padding: 13px  0;
	color: #333;
}


.textbox{
	width: 220px;
	overflow: hidden;
	font-size: 20px;
	padding: 8px 0;
	margin: 8px 0;
	border-bottom: 1px solid #333;
}

.textbox i{
	color: #333;
	width: 26px;
	text-align: center;
}

.textbox input{
	border: none;
	background: none;
	outline: none;
	color: #333;
	font-size: 14px;
	width: 50%;
	margin: 0 10px;
}

.choose{
	display: flex;
	margin: 8px 0px;
	padding: 8px 0px;
	font-size: 20px;
	width: 230px;
}
.choose select{
	border: none;
	background: none;
	outline: none;
	color: #333;
	font-size: 14px;
	margin: 0 10px;
}
.choose select:hover, .same-as-selected {
  background-color: #3498db;
}
.choose input[type="date"]:hover {
	background-color: #3498db;
}

.choose input{
	border: none;
	background: none;
	outline: none;
	color: #333;
	font-size: 14px;
}

.gender{
	margin: 8px 0;
	padding: 8px 10px;
}

.gen{
	font-size: 14px;
	color: #333;
	padding: 0 30px;
}
.check{
	margin-top: 10px;
	font-size: 10px;
}

.btn{
	width: 100%;
	background: none;
	border: none;
	color: #fff;
	padding: 5px;
	font-size: 18px;
	margin: 20px 0;
	height: 40px;
	background: linear-gradient(120deg,#3498db,#8e44ad);
	background-size: 125%;
}

