.logo {
	text-align: center;
	font-size: 52px;
	font-weight: 500;
	margin-top:.4em;
}
.logo-text-nu {
	color: #1A82AC;
}
.logo-text-liga {
	color: #3A4851;
}

.well {
	border-radius: 0;
}
.well-login {
	padding-top: 0;
	padding-bottom: 0;
}
.text-pre-line {
	white-space: pre-line;
}
.btn-toolbar-center {
	text-align:center;
}
.btn-toolbar-center .btn {
	float: none;
	margin-left: 1em;
	margin-right: 1em;
}
footer {
	text-align: center;
	margin-top: .5em;
	margin-bottom: 1em;
}

body {
	color: #3A4851;
}
a {
	color: #1A82AC;
}
.btn-primary {
	background-color: #1A82AC;
	border-color: #1A82AC;
}
.btn-default, .btn-default:hover {
	border-color: #1A82AC;
	color: #3A4851;
}
h1, .h1 {
	font-weight: 400;
	font-size: 24px;
}


.loader-container {
	position:relative;
	float:left;
	margin-left: 10px;
}

.loader {
  border: 3px solid #f3f3f3; /* Light grey */
  border-top: 3px solid #1A82AC; /* Blue */
  border-radius: 50%;
  width: 35px;
  height: 35px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}