* {
  	box-sizing: border-box;
  	font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
  	font-size: 16px;
}
/*
body {
	background-color: #151A26;
	background-image: url("images/bg-1.webp");
	background-repeat: no-repeat;
	background-size: cover;
    background-position: center;
}
*/
/* Container for flexboxes */
.row {
	display: flex;
	flex-wrap: wrap;
	max-width: 1366px;
	margin-left: auto;
	margin-right: auto;
  }
  
  /* Create two equal columns */
  .column {
	flex: 50%;
	padding: 20px;
	margin: 100px auto;
	text-align: center;
  	color: white;
  }
  .column h1 {
	font-size: 32px;
  	color: #ffce00;
  }
  .column p {
	font-size: 18px;
  	color: white;
	line-height: 1.5;
  }
  /* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
	.row {
	  flex-direction: column;
	}
}
.register {
	width: 400px;
	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
	background-color: #ffffff;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.register h1 {
  	text-align: center;
  	color: #5b6574;
  	font-size: 24px;
  	padding: 20px 0 20px 0;
  	border-bottom: 1px solid #dee0e4;
}
.register h3 {
    text-align: center;
    color: #04ce69;
    font-size: 16px;
    padding: 20px 0 20px 0;
}
.register form {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 20px;
}
.register form label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 50px;
  	height: 50px;
  	background-color: #3274d6;
  	color: #ffffff;
}
.register form input[type="password"], .register form input[type="text"], .register form input[type="email"] {
  	width: 310px;
  	height: 50px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
  	padding: 0 15px;
}
.register form input[type="submit"] {
  	width: 100%;
  	padding: 15px;
 	margin-top: 20px;
  	background-color: #151A26;
  	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
}
.register form input[type="submit"]:hover {
	background-color: #16233B;
  	transition: background-color 0.2s;
}
.register .captchaError h3 {
	text-align: center;
	color: #ce0404;
	font-size: 16px;
	padding: 20px 0 20px 0;
}
.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding: 10px 0 0 0;
  }
footer {
	font-size: 12px;
	text-align: center;
	padding: 3px;
	color: white;
  }
footer a {
	font-size: 12px;
	color: white;
  }