* {
	padding: 0;
	margin: 0;
	outline: none;
	background: none;
	border-radius: 0;
	-webkit-border-radius: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: none;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 14px;
	color: #e0e0e0;
    line-height: 1.6;
    background: linear-gradient(to bottom, #1e1e2f, #121218);
}

p, h1, h2, h3 {
	margin: 0 0 20px 0;
}

a {
	color: #00c9a7;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a img {
	border: none;
}

.clear {
	clear: both;
}

.right {
	float: right;
}

.left {
	float: left;
}

.center-text {
    text-align: center;
}

.v-margin {
    height: 30px;
}

.wrapper {
    max-width: 500px;
    margin: auto;
}

.header {
    padding: 60px 0 0 0;
}

.logo img {
    display: block;
    max-width: 100%;
    margin: auto;
}

.banner img {
    max-width: 100%;
    display: block;
    margin: auto;
}

.content {
    margin: 0 0 50px 0;
    border-radius: 8px;
}

.banner {
    background-image: linear-gradient(to bottom right, #2c5364, #0f2027);
    padding: 40px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    color: #ffffff;
    text-align: center;
}

.form {
    background: #1e1e2f;
    padding: 40px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.title {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    text-transform: uppercase;
    text-align: center;
    color: #f0f0f0;
}

.message {
    background: url("../images/tick.png") no-repeat center 25px;
    background-color: #1c2d23;
    padding: 100px 15px 15px 15px;
    border-radius: 5px;
    border: 1px solid #3a4b3c;
    margin-top: -15px;
    margin-bottom: 25px;
    font-size: 13px;
    text-align: center;
    color: #aef2bf;
}

.instructions {
    margin-bottom: 25px;
    font-weight: 700;
    color: #cccccc;
}

input[type="text"], input[type="email"], input[type="number"], input[type="tel"] {
    display: block;
    border: none;
    border-bottom: 1px solid #555;
    background: #2b2b3a;
    color: #f0f0f0;
    padding: 10px 5px;
    margin-bottom: 15px;
    font-size: 14px;
    width: 100%;
    border-radius: 4px;
}

input[type="checkbox"] {
    border: 1px solid #aaa;
    float: left;
    width: 15px;
    display: block;
    background: #333;
}

.legal {
    float: left;
    margin: -20px 0 0 30px;
    font-size: 12px;
    color: #aaa;
}

input[type="submit"] {
    background: #00c9a7;
    display: block;
    margin-top: 25px;
    border-radius: 20px;
    color: #fff;
    font-weight: 700;
    border: none;
    padding: 12px 35px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

input[type="submit"]:hover {
    background: #009e80;
}

.half {
    width: 49% !important;
}

.privacy {
    max-width: 720px;
    margin: auto;
    padding: 35px;
    background: #222236;
    margin-top: 25px;
    margin-bottom: 25px;
    border-radius: 6px;
    font-size: 13px;
    border: 1px solid #444;
    color: #ddd;
}

.privacy img {