body {
	margin:0;
	padding:0;
	background-color: #010510;
	color: #f3f3f3;
	font-family: 'helveticaregular';
	font-size: 1.1rem;
}

b,label {
	font-family: 'helveticabold';
}

header {
	max-width: 100%;
	width: 1000px;
	margin: 0 auto;
	text-align: center;
}

header img {
	width: 100%;
}

.container {
	max-width: 100%;
	width: 800px;
	margin: 0 auto;
	padding: 10px;
	box-sizing: border-box;
}

.center {
	text-align: center;
}

footer {
	margin-top: 60px;
	margin-bottom: 20px;
}

footer section {
	text-align: center;
}

.form-field label {
	display: block;
	margin-bottom: 5px;
}

.form-field input, .form-field textarea, .form-field select {
	width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    background: #15171e;
    color: white;
    margin-bottom: 10px;
}

.form-field input:focus {
	outline: none;
}

button {
	background: #010510;
    margin: 0 auto;
    display: block;
    border: 1px solid #535353;
    padding: 0.5rem 3rem;
    font-size: 1.4rem;
    color: white;
    border-radius: 0.5rem;
    margin-top: 30px;
}

button:hover {
	background: #090e1c;
	cursor: pointer;
}

/* Checkbox */

.checkbox-container {
	display: block;
	position: relative;
	padding-left: 33px;
	margin-top: 20px;
	margin-bottom: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.checkbox-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
  
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 22px;
	width: 22px;
	background-color: #010510;
    border: 1px solid #535353;
	border-radius: 5px;
}
  
.checkbox-container:hover input ~ .checkmark {
	background-color: #090e1c;
}
  
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
  
.checkbox-container input:checked ~ .checkmark:after {
	display: block;
}

.checkbox-container .checkmark:after {
	left: 8px;
    top: 3px;
    width: 5px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}