#register {
	margin-bottom: 20px;
}

#register button {
	background-color: var(--p);
	border-radius: 5px;
	border: 0px;
	color: var(--pt);
	cursor: pointer;
	font-size: 1.1rem;
	padding: 20px;
	padding-bottom: 10px;
	padding-top: 10px;
}

#register button:hover {
	background-color: var(--s);
	color: var(--st);
}

#register h3 {
	margin-top: 40px;
}

#register input {
	background-color: #FFF;
	border-radius: 5px;
	border: 1px solid var(--p);
	color: var(--bt) !important;
	font-size: 1.1rem;
	margin-bottom: 12.5px;
	padding: 12.5px;
	width: 100%;
}

#register input:disabled {
	background-color: var(--s);
	color: var(--st);
}

#register input:focus {
	background-color: var(--pl);
}

#register input[type=checkbox] {
  display: none;
}

#register input[type=checkbox] + label {
	background-color: #EEE;
	border: 2px solid #DDD;
	border-radius: 30px;
	content: "";
	display: inline-block;
	height: 34px;
	margin-right: 5px;
	margin-top: 5px;
	transition: background-color 0.5s linear;
	width: 60px;
}

#register input[type=checkbox] + label:hover {
	cursor: pointer;
}

#register input[type=checkbox] + label::before {
	background-color: #FFF;
	border-radius: 30px;
	box-shadow: 0px 0px 5px #AAA;
	content: "";
	display: block;
	float: left;
	height: 30px;
	margin-right: 5px;
	transition: margin 0.1s linear;
	width: 30px;
}

#register input[type=checkbox]:checked+label {
	background-color: #414B4B;
}

#register input[type=checkbox]:checked+label::before {
	margin: 0 0 0 30px;
}

#register label {
	display: block;
	font-weight: bold;
	margin-bottom: 12.5px;
}

#register .widget {
	width: 100%;
}

#register .widget-full {
	width: 100%;
}

.logo {
	margin-bottom: 20px;
	width: 100%;
}

.logo img {
	display: block;
	height: auto;
	width: 100%;
}

@media (min-width: 480px) {
	.logo img {
		margin: 0 auto;
		width: 70%;
	}
}

@media (min-width: 600px) {
	.logo img {
		margin: 0 auto;
		width: 50%;
	}
}

@media (min-width: 800px) {
	#container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-ms-flex-line-pack: start;
		align-content: flex-start;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	
	#register h3 {
		width: 100%;
	}
	
	#register .form {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-ms-flex-line-pack: stretch;
		align-content: stretch;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
	}
	
	#register .widget {
		width: calc(50% - 35px);
	}
	
	.logo {
		height: auto;
	}
	
	.logo img {
		width: 300px;
	}
}

@media (min-width: 1024px) {
	#footer {
		text-align: center;
	}
	
	#register {
		margin: 0 auto;
		width: 800px;
	}
}