:root {
	--primary-color: #4b4c9a;
}

.container-login {
	width: 100%;
	min-height: 100vh;
	display: flex;
	justify-content: flex-start;
	background-image: url("../img/fondo-globo.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.container-login .login {
	width: 400px;
	height: 100vh;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-top: 50px;
	flex-direction: column;
	background-image: url("../img/franja-login.png");
	background-position: left;
	background-repeat: no-repeat;
	background-size: 10px;
	background-size: contain;
}

.container-login .login #franja {
	width: 40px;
}

.container-login .login #logo {
	width: 250px;
	margin-bottom: 20px;
}

.container-login .login > h1 {
	font-size: 15px;
	font-weight: 400;
	margin: 0;
}

.login-content > form {
	/* width: 100%; */
	width: 280px;
	margin-top: 40px;
}

.login-content > form > div input {
	height: 20px!important;
	margin-bottom: 5px;
	padding: 10px 0!important;
}

.login-content > form > button,
.reset-container > form > button
{
	width: 100%;
	background-color: #0a66fc;
	border: none;
	padding: 10px;
	border-radius: 3px;
	margin-top: 15px;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
}

.tab-group {
	list-style:none;
	padding:0;
	margin-bottom: 15px;
	width: 280px;
}

.tab-group:after {
	content: "";
	display: table;
	clear: both;
}

.tab-group li a {
	display:block;
	text-decoration:none;
	padding:15px;
	/* background:rgba($gray-light,.25); */
	/* color:$gray-light; */
	font-size:16px;
	font-weight: 600;
	float:left;
	width:50%;
	text-align:center;
	cursor:pointer;
	transition:.5s ease;
	color: #2e2e2e;	
	line-height: 2.5;
}

.tab-group li:first-child {
	padding-left: 0;
}

.tab-group li:last-child {
	padding-right: 0;
}

.tab-group li a:hover {
	transform: scaleX(1);
}

.tab-group li a:after {
	display:block;
	content: '';
	border-bottom: solid 3px #F1A276;  
	transform: scaleX(0);  
	transition: transform 250ms ease-in-out;
}

.tab-group li .active:after {
	border-bottom: solid 3px var(--primary-color);  
}

.tab-group li a:hover:after , .tab-group li .active:after { 
	transform: scaleX(1); 
}

@media screen and (max-width: 992px) {
	.container-login {
		justify-content: center;
	}
}

.active-jd{
	display: block !important;
}

.reset-container{
	display: none;
	margin-top: 40px;
}

#resetPasswordBtn,
#volverBtn
{
	cursor: pointer;
	margin-top: 10px;
	display: inline-block;
	text-decoration: underline !important;
	color: #00000090 !important;
}

.volver-container{
	display: flex;
	justify-content: center;
}