

/* AUXILIARIES */
.text-justify {
  text-align: justify;
}

/* */

html,
body {
    padding: 0;
    margin: 0;
    width: 100%;
}

body {
    height: 100%;
    background: #000;
}


/* HEADER */

header {
    width: 100%;
	text-align: center;
	padding-top: 40px;
	color: #aaa;
}

@media (max-width: 500px) {
	h1 {
		font-size: 22px;
	}

	h3 {
		font-size: 16px;
	}
}


/* FORM */

.help-block {
	font-size: 12px;
}

.form-control-feedback {
	right: 12px;
}

form {

}

form label {
	color: #aaa;
}

form .btn-primary {
	float: right;
}

form .btn-success {
	float: right;
	color: #000;
}

.form-group.required .control-label:after {
  content:"*";
  color:red;
}

/* FOOTER */

.footer {
    width: 100%;
    background-color: #d5d5d5;
}

.footer p {
	line-height: 40px;
	vertical-align: middle;
	text-align: center;
	margin-bottom: 0;
}

.footer a.kode {
	text-decoration: none;
	display: inline-block;
	background: url(/img/logo-kode.png) no-repeat;
	width: 39px;
	height: 16px;
	background-position: 0 0;
	line-height: 20px;
	margin-left: 4px;
}

.footer a.kode:hover {
	background-position: 0 -16px;
}

@media (max-width: 500px) {
	.footer span {
		display: block;
		line-height: 20px;
	}

	.footer span[class="separator"] {
		display: none;
	}

	.footer span:first-child {
		margin-top: 10px;
	}

	.footer span:last-child {
		font-size: 10px;
		margin: 0;
	}

}