/** Header **/
header h1 {
	float: none;
	text-align: center;
}

/** Issues with form **/
.issues {
	width: 77%;
	margin: 40px auto 0 auto;
	padding: 10px;
	border: 1px solid #A94442;
	color: #A94442;
	background: #F2DEDE;
	text-align: left;
}
.issues p {
	text-align: center;
}

/** Section with login form **/
.register {
	width: 80%;
	margin: 40px auto 40px auto;
	background-color: #FFF;
	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.5);
	margin: 100px auto;
}
.register .container {
	width: 80%;
	margin: auto;
}
.register h1 {
	text-align: center;
	color: #5B6574;
	font-size: 24px;
	padding: 20px 0 20px 0;
	border-bottom: 1px solid #DEE0E4;
}
.register form {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
.register form .input-container:first-child {
	margin-top: 40px;
}
.register form .input-container {
	display: flex;
	width: 100%;
	margin-bottom: 15px;
}
.register form #username, .register form #email, .register form #password, .register form #region, .register form #gender, .register form #birthday {
	width: 100%;
	padding: 10px;
	outline: none;
}
.register form #username:focus, .register form #email:focus, .register form #password:focus {
	border: 2px solid #3292E7;
}
.register form i {
	padding: 10px;
	background-color: #3292E7;
	color: #FFF;
	min-width: 30px;
	text-align: center;
}
.register form  .agree {
	margin-top: 10px;
	margin-bottom: 10px;
}
.register form a {
	text-decoration: none;
	color: #206FD8;
}
.register form #submit {
	background-color: #3292E7;
	color: #FFF;
	margin-bottom: 40px;
	padding: 15px 20px;
	border: none;
	cursor: pointer;
	width: 100%;
	opacity: 0.9;
}

.register form #submit:hover {
	opacity: 1;
}