body {
	padding: 5%;
	color: #333333;
}
#page-holder {
	max-width: 1200px;
}
#page-footer {
	border-top: 1px solid #e3e3e3;
	margin-top: 30px;
	padding-top: 15px;
}
#form-holder, #blacklist-msg {
	margin-top: 20px;
}
#form-actions {
	margin: 30px 0 0 0;
}
#form-actions button {
	margin-left: 20px;
}
#form-actions button:first-child {
	margin-left: 0;
}
#form-container {
	background: rgba(245, 245, 245, 1);
	padding: 24px 30px;
	margin: 0 10px;
    border-radius: 4px;
}
a.lang-selector {
	padding: 0 6px;
	border-right: 1px solid #e3e3e3;
}
a.lang-selector.first{
	border-left: 1px solid #e3e3e3;
}
span.form-heading {
	font-size: 26px;
	padding: 30px 0 8px 0;
	display: block;
}
span.form-details {
	font-size: 16px;
}
.text-muted {
	font-size: 12px;
}
@media screen and (max-width: 767px) {
	.row {
		margin-bottom: 10px;
	}
	a.lang-selector {
		padding: 0 6px;
	}
	#form-container {
		margin: 0;
	}
	body {
		padding: 0;
	}
}
@media screen and (max-width: 350px) {
	#lang-holder span.form-details {
		font-size: 14px;
	}
	a.lang-selector {
		padding: 0 4px;
	}
}
img.bg {
	/* Set rules to fill background */
	min-height: 100%;
	min-width: 900px;

	/* Set up proportionate scaling */
	width: 100%;
	height: auto;

	/* Set up positioning */
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: -99999;
}
@media screen and (max-width: 900px) { /* Specific to this particular image */
	img.bg {
		left: 50%;
		margin-left: -450px;   /* 50% */
	}
}

/* buttons */
.btn {
	padding-top: 5px;
	padding-bottom: 5px;
    border-radius: 1px;
    box-shadow: 3px 3px 6px -3px rgba(64, 64, 64, 0.5);
}

.btn:hover, .btn:focus {
	background-color: inherit;
    background-position: inherit;
}

.btn-default {
	background-image: linear-gradient(to bottom, #FAFAFA 2%, #EFEFEF 98%);
	border-color: #C5C5C5 #C5C5C5 #BCBCBC;
}

.btn-primary {
    background: transparent -moz-linear-gradient(center top , rgb(175, 194, 212) 0%, rgb(175, 194, 212) 1px, rgb(91, 131, 168) 1px, rgb(33, 88, 137) 100%) repeat scroll 0% 0%;
    background: transparent linear-gradient(rgb(175, 194, 212) 0%, rgb(175, 194, 212) 1px, rgb(91, 131, 168) 1px, rgb(33, 88, 137) 100%) repeat scroll 0% 0%;
    border-color: #194872;
    border: 1px solid rgb(101, 145, 201);
}

/* alert message boxes */
.alert {
	color: #333333;
	background-image:none;
	box-shadow: none;
	padding: 5px 10px 5px 10px;
}	
.alert-warning {
	border-color: #FFD400;
    background-color: #FFE566;
}
.alert-danger {
	border-color:#A51717;
	background-color:#EA7878;
}