
body {
	margin: 0;
	padding: 0;
	background-color: #424242;
	font-family: 'Helvetica', Arial, sans-serif;
	font-size: 16px;
	color: #FAFAFA;
}

#container {
	width: 380px;
	min-width: 320px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	padding-top: 150px;
	text-align: center;
}

@media (max-width: 400px) {
	#container {
		width: 100%;
		padding-left: 10px;
		padding-right: 10px;
	}
}

@media (max-width: 700px) {
	#container {
		padding-top: 100px;
	}
}

@media (max-width: 400px) {
	#container {
		padding-top: 60px;
	}
}


#logo {
	width: 221px;
	height: 33px;
	position: absolute;
	top: 26px;
	left: 60px;
}

#close {
	width: 42px;
	height: 42px;
	position: absolute;
	top: 30px;
	right: 50px;
}

@media (max-width: 600px) {
	#logo {
		top: 20px;
		left: 10px;
	}
	#close {
		top: 20px;
		right: 30px;
	}
}



h1 {
	font-size: 100%;
	font-weight: normal;
	text-transform: uppercase;
	margin: 0;
	margin-bottom: 10px;
}

p {
	margin: 0;
	margin-bottom: 10px;
}

#flash-message {
	font-weight: bold;
	color: #76C0CC;
}

.small-text {
	font-size: 80%;
}


/****** LINKS AND BUTTONS ******/
a:link, a:visited {
	color: #76C0CC;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

.gray-link:link, .gray-link:visited {
	color: #9E9E9E;
	text-decoration: none;
}

.gray-link:hover {
	color: #FAFAFA;
	text-decoration: none;
}

.btn {
	display: inline-block;
	padding: 8px 25px 8px 25px;
	margin: 2px 0px 2px 0px;
	background-color: #424242;
	border: 2px solid #76C0CC;
	color: #76C0CC;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	font-size: 100%;
	font-weight: normal;
	cursor: pointer;
	box-sizing: border-box;
	height: 43px;
}

.btn:link, .btn:visited {
	text-decoration: none;
	color: #76C0CC;
}

.btn:hover {
	background-color: #76C0CC;
	color: #FAFAFA;
}
#btn-loader {
	width: 10px;
    height: 10px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #78bfc3;
	border-radius: 100%;
	margin: auto;
	visibility: hidden;
	animation: spin 1s infinite linear;
	display: none;
  }
#btn-loader.display {
	visibility: visible;
	display: block;
	position: relative;
	left: 45%;
    top: 15px;
}
@keyframes spin {
from {
	transform: rotate(0deg);
}
to {
	transform: rotate(360deg);
}
}
/****** FORM ELEMENTS ******/
form {
	margin: 0;
	padding: 0;
}

input[type=text], input[type=email], input[type=password], textarea {
	padding: 10px;
	margin: 0px 0px 15px 0px;
	background-color: #FAFAFA;
	border: 1px solid #424242;
	font-family: 'Helvetica', Arial, sans-serif;
	font-size: 95%;
	box-sizing: border-box;
	width: 100%;
}

input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, textarea:focus {
	border: 1px solid #76C0CC;
}

input[type=submit], button {
	box-sizing: border-box;
	height: 43px;
	-webkit-appearance: none;
}

