.j-container {
  position: relative;
  background-color: #084298;
}
.j-center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}
.j-btn {
  background-color: #084298;
  color: #ffffff;
  
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  border: none;
  border-radius: 5px;
  font-size: 13px;
  text-transform: uppercase;
}
.j-btn:hover {
  background-color: #CCCCCC;
  color: #084298;
  cursor: pointer;
}
.j-input {
  background-color: transparent;
  width: 100%;
  border: 0;
  color: #084298;
  
  border-radius: 0;
  height: 40px;
}
.j-input-group {
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid #084298;
}
.j-input-group > input {
  width: 100%;
  padding-right: 40px;
}
.j-input-group > i {
  color: #084298;
  position: absolute;
  right: 10px;
}
.j-card-tour:hover {
  border: 1px solid #084298;
  cursor: pointer;
}


a {
  color: #808080;
  text-decoration: none;
  text-transform: uppercase;
}
a:hover {
  color: #084298;
  text-decoration: pointer;
}

/* COMMON */
body {
	font-family: 'Roboto', sans-serif;
	color: #084298;
}

/* FRAMEWORK */
.frmw-background {
	background: url('../img/login_background.jpg');
	background-size: cover;
	
}
.frmw-darkmask {
	background-color: rgba(0,0,0,0.7);
}
.frmw-loginform, .frmw-recoveryform {
	width: 50%;
	/*background-color: rgba(255,255,255,0.5);*/
	/*border-radius: 2em;*/
}

.frmw-title {
	border-bottom: 2px solid #90c990;
	padding-top: 12px;
	padding-bottom: 12px;
	margin-bottom: 20px;
	text-transform: uppercase;
	font-size: 1.1em !important;
	color: #a6b0c3;
}
.frmw-icon-title{
	height: 50px;
	margin-right: 10px;
}
.frmw-subtitle {
	background-color: #90c990;
	color: #ffffff;
	padding: 4px;
	margin-top: 40px;
	margin-bottom: 20px;
	text-transform: uppercase;
	font-size: 1.2em;
}

.frmw-nav-link:hover {
	border-bottom: 1px solid #90c990;
}

.frmw-main-color {
	color: #90c990 !important;
}

.frmw-color-hover {
	color: black;
}
.frmw-color-hover:hover {
	color: #90c990;
	cursor: pointer;
}
.container-scroll {
	height: calc(100vh - 165px);
	overflow-y:auto;
}