body.signup {
	background: #FEF2EB;
 }

.signup div.wrapper {
	display: flex;
	align-items: flex-start;
	flex-flow: column wrap;
	gap: 36px;
	flex: 1 0 0;
}
.signup div.wrapper > img {
	display: none;
}
.signup div.wrapper > div.container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	flex: 1 0 0;
	width: 100%;
}


.tab {
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	align-self: stretch;
}

.tab button {
	display: block;
	width: 50%;
	border-radius: 0;
	border: 0;
	background: none;
 	outline: none;
	cursor: pointer;
	padding: 16px 32px;
	transition: 0.3s;
	border-bottom: 1px solid #c3c3c3;	
	color: #555555;
	font-family: 'Poppins', Helvetica, Arial, sans-serif;
	font-weight: 700;
}

.tab button:hover {
	background: #FCE6D8;
	border-bottom: 1px solid #F1803A;
}

.tab button.active {
  background: none;
  border-bottom: 4px solid #0CB5AC;
}

.tabcontent {
  display: none;
  padding: 0 0 32px;
}

.tabcontent form {
	width: 100%;
	margin: 0;
	padding: 0 0 32px;
}
.tabcontent form ul {
	margin: 0;
	display: flex;
	padding: 0 0 32px;
	align-items: flex-start;
	align-content: flex-start;
	gap: 16px;
	align-self: stretch;
	list-style: none;
	flex-flow: column wrap;
}
.tabcontent form li {
	padding: 0;
	margin: 0;
	width: 336px;
}
.tabcontent form label {
	color: #5D7192;
	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: 18px;
	display: block;
	margin-bottom: 8px;
}
.tabcontent form input,
.tabcontent form select {
	width: 100%;
}
.tabcontent form input[id="bday_mm"], 
.tabcontent form input[id="bday_dd"] {
	width: 64px;
}
.tabcontent form input[id="bday_year"] {
	width: 128px;
}
.tabcontent form li.terms label {
	font-size: 16px;
	font-weight: 400;
	display: flex;
	flex-flow: row nowrap;
	gap: 16px;
}
.tabcontent form button {
	width: 100%;
}

@media only screen and (min-width: 768px) {
	.tabcontent form ul {
		flex-flow: row wrap;
	}
	.tabcontent form li.terms,
	.tabcontent form li.idfile {
		width: 692px;
	}
}

@media only screen and (min-width: 1024px) {

}

@media only screen and (min-width: 1366px) {
	.signup div.wrapper {
		flex-flow: row nowrap;
		gap: 32px;
	}
	.signup div.wrapper > img {
		display:inline;
		width: 40%;
	}
}

@media only screen and (min-width: 1600px) {
	.signup div.wrapper {
		gap: 64px;
	}
	.tabcontent {
		padding: 0 32px 32px;
	}
	.tabcontent form button {
		width: 336px;
	}
} 