* {
	margin:0;
	padding:0;
}
body{
	background-color: #F1F3F5;
}
.form-content {
	width:1032px;
	margin:60px auto;
	box-sizing:border-box;
	background-color: #FFFFFF;
	padding: 80px 100px;
}
.form-content h1{
	color: #2A2B2E;
	font-size: 32px;
	font-weight: 600;
	line-height: 150%; 
	margin-bottom: 16px;
}
.form-content h4{
	color: #6A6B6D;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%; 
	margin-bottom: 60px;
}
#myForm {
	margin:0px auto 0px auto;
}
.form-row{
	display: flex;
	justify-content: space-between;
}
.form-item{
	width: 48%;
}
.form-title {
	margin:0 auto;
	color:#2A2B2E;
	font-size:16px;
	font-weight:400;
	line-height:150%;
}
#myForm label {
	display:block;
	margin-bottom:8px;
	color:#2A2B2E;
	font-size:16px;
	font-weight:400;
}
#myForm label span {
	color:#E60039;
}
#myForm input,#myForm select,#myForm textarea {
	width:100%;
	padding:12px 16px;
	margin-bottom:32px;
	box-sizing:border-box;
	border-radius:4px;
	border:1px solid #D5D5D5;
	backdrop-filter:blur(2.5px);
	-webkit-backdrop-filter:blur(2.5px);
}
#myForm input::placeholder{
	color: #C1C6CF;
}
#imgCode{
	width: 70%!important;
	margin-right: 12px;
}
.form-privacy{
	margin-bottom: 60px;
}
#myForm span{
	padding-right: 4px;
}
#myForm button {
	border-radius:4px;
	background:#E60039;
	backdrop-filter:blur(2.5px);
	-webkit-backdrop-filter:blur(2.5px);
	display:flex;
	justify-content:center;
	align-items:center;
	border:none;
	color:#FFF;
	font-size:16px;
	font-weight:400;
	padding:12px 24px;
	margin:0 auto;
	cursor:pointer;
}
.verification-code{
	margin-top: -2px;
}
@media screen and (max-width:768px) {
	body{
		background-color: #ffffff;
	}
	.form-content {
		width:100%;
		padding:0px 24px;
		margin: 48px auto;
	}
	.form-modal-content {
		width:80%;
	}
	.form-row{
		flex-wrap: wrap;
	}
	.form-item{
		width: 100%
	}
	.form-content h4 {
		margin-bottom: 40px;
	}
	#myForm input, #myForm select {
		width: 100%;
		margin-bottom: 16px;
	}
	.form-privacy {
		margin-bottom: 40px;
	}
	.form-content h1 {
		font-size: 24px;
	}
	#imgCode {
		width: 65%!important;
	}
}