@charset "utf-8";
/* CSS Document */

@font-face {
	font-family: 'comfortaa';
	src: url('comfortaa-bold-webfont.eot');
	src: local('☺'), url('comfortaa-bold-webfont.woff') format('woff'), url('comfortaa-bold-webfont.ttf') format('truetype'), url('comfortaa-bold-webfont.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

/** Generated by FG **/
@font-face {
	font-family: 'helvetica';
	src: url('Helvetica.eot');
	src: local('☺'), url('Helvetica.woff') format('woff'), url('Helvetica.ttf') format('truetype'), url('Helvetica.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}


body {
	background: url(../sprites/bg_selection.jpg) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	font-family: 'helvetica';
}

.play-btn {
	height: 100px;
	width: 150px;
	margin-left: 50%;
	transform: translate(-50%, 0%);
	cursor: pointer;
}

.row {
	max-width: 70rem;
	margin: 0 auto;
}

.header {
	margin: 3em auto 3em auto;
	text-align: center;
}

.header-logo img {
	width: 150px;
}

.title {
	margin-top: 3em;
}

.title h1 {
	font-size: 3em;
	text-transform: uppercase;
	line-height: 1.5em;
	margin-bottom: 1em;
}

.title p {
	margin-bottom: 2em;
    line-height: 1.5em;
    text-align: center;
}

.loader {
	text-align: center;
	display: none;
	margin-top: 2em;
	margin-bottom: 2em;
	min-height: 4em;
}

@-moz-keyframes slide {
    0% {
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(2);
    }
    100% {
        transform: scale(1);
    }
}
@-webkit-keyframes slide {
    0% {
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(2);
    }
    100% {
        transform: scale(1);
    }
}
@-o-keyframes slide {
    0% {
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(2);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes slide {
    0% {
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(2);
    }
    100% {
        transform: scale(1);
    }
}

.dot {
    width: 24px;
    height: 24px;
    background: #3ac;
    border-radius: 100%;
    display: inline-block;
    animation: slide 1s infinite;
}
.dot:nth-child(1) {
    animation-delay: 0.1s;
    background: #000;
}
.dot:nth-child(2) {
    animation-delay: 0.2s;
    background: #000;
}
.dot:nth-child(3) {
    animation-delay: 0.3s;
    background: #000;
}
.dot:nth-child(4) {
    animation-delay: 0.4s;
    background: #000;
}
.dot:nth-child(5) {
    animation-delay: 0.5s;
    background: #000;
}

.register {
	margin-left: auto;
	margin-right: auto;
	width: 600px;
	margin-bottom: 4em;
}

.register > form {
	text-align: center;
}

input[type="text"]:first-child {
	width: 48%;
	float: left;
}

input[type="text"]:nth-child(2) {
	width: 48%;
	float: right;
}

input[type="text"], input[type="email"], input[type="number"] {
	display: block;
	border: solid 1px #000;
	height: 50px;
	margin-bottom: 1.5em;
	margin-left: auto;
	margin-right: auto;
	padding: 0.5em 1.5em;
	width: 100%;
	width: 100%;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

input[type="text"]:focus, input[type="email"]:focus, input[type="number"]:focus {
	outline: none;
}

.register button {
	border: none!important;
	outline: none!important;
	background-color: #000;
	font-family: 'helvetica';
	color: #fff;
	padding: 0.75em 4em;
	text-transform: uppercase;
	font-size: 1.25em;
	margin-top: 1em;
	margin-bottom: 2em;
	cursor: pointer;
}

label.error {
	display: block;
    margin-top: -1em;
    margin-bottom: 1em;
    color: #f00;
}

.disclaimer {
	font-size: 0.8em;
	font-style: italic;
}

.reg-success {
	opacity: 0;
	width: 600px;
    margin: 0 auto;
}

.reg-success p {
	margin-bottom: 2em;
    line-height: 1.5em;
    text-align: center;
}

.scale-in-center {
	-webkit-animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
			opacity: 1;
}

@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}


@media (max-width: 768px) {
	body, .row {
		max-width: 100%;

	}
	.header-logo img {
		width: 75px;
	}
	.title h1 {
		font-size: 2em;
	}
	.register {
		 max-width: 100%;
		 padding-left: 1.5em;
		 padding-right: 1.5em;
		 -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
		-moz-box-sizing: border-box;    /* Firefox, other Gecko */
		box-sizing: border-box;         /* Opera/IE 8+ */
	}
	input[type="text"]:first-child {
		width:100%;
		float: none;
	}

	input[type="text"]:nth-child(2) {
		width:100%;
		float: none;
	}

}
