.content {
	position: relative;
	background-image: none;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

@media (min-width: 1200px) {
	.content {
		position: relative;
		background-image: url("/assets/v2/img/login-bg.jpg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		height: calc(100vh - 50px);
	}
}

.content:before {
	content: "";
	position: absolute;
	top: 0; bottom: 0; left: auto; right: -90%;
	background-color: #FFF;
	width: 480%;
	-webkit-transform: skew(-55deg);
	-ms-transform: skew(-55deg);
	transform: skew(-55deg);
}
.content p {
	margin: 0;
}
.content span {
	display: inline-block;
	vertical-align: middle;
}
.content .btn {
	font-size: 100%;
	border: 0;
	border-radius: 0;
}
.content .icon {
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px;
	width: 30px;
	height: 34px;
}
.content .icon-phone {
	background-image: url("/assets/v2/img/login/icon-phone.png");
}
.content .icon-lock {
	background-image: url("/assets/v2/img/login/icon-lock.png");
}
.content .icon-email {
	background-image: url("/assets/v2/img/login/icon-email.png");
}

@media (min-width: 550px) {
	.content:before {
		right: -20%;
		width: 270%;
	}
}

@media (max-width: 767px) {
}

@media (min-width: 768px) {
	.content:before {
		right: -10%;
		width: 220%;
	}
}

@media (min-width: 992px) {
	.content:before {
		left: -80%; right: auto;
		width: 150%;
		-webkit-transform: skew(-50deg);
		-ms-transform: skew(-50deg);
		transform: skew(-50deg);
	}
}

@media (min-width: 1200px) {
	.content .icon {
		background-size: 16px;
		width: 40px;
		height: 45px;
	}
}


/*==============================
=            Couple            =
==============================*/

.login-couple {
	display: none;
}

@media (min-width: 768px) {
	.login-couple {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 390px;
	}
	.login-couple img {
		position: absolute;
		bottom: 0;
		left: calc(50% + 12px);
		width: 362px;
	}
}

@media (min-width: 1200px) {
	.login-couple {
		display: block;
		height: 586px;
	}
	/* .login-couple img {
		left: calc(50% + 18px);
	    width: 545px;
	} */

	.login-couple img {
		left: calc(50% + 18px);
	    width: 550px;
	}
}

/*=====  End of Couple  ======*/


/*===================================
=            Tab Content            =
===================================*/

.login-content {
	position: relative;
	/* left: calc(50% - 362px/2); */
	background-color: rgba(255, 255, 255, 0.6);
	/* width: 362px; */
	width: 100%;
	min-height: 380px;
	margin-top: 0px;
	/* margin-bottom: 40px; */
	/* padding: 0 20px; */
	padding: 0;
	font-size: 12px;
	text-align: center;
}
.login-content .error-message {
	background-color: #FEF6F6;
	color: #CD5257;
	padding: 8px;
	font-size: 85%;
	text-align: center;
}

@media (min-width: 768px) {
	.login-content {
		left: calc(50% - 362px/2);
		width: 362px;
		margin-top: 30px;
		margin-bottom: 30px;
		/* padding: 15px 20px; */
		padding: 0px;
		border: 2px solid #CECECE;
	}
}

@media (min-width: 1200px) {
	.login-content {
		left: calc(50% - 549px);
		width: 545px;
		min-height: 520px;
		margin-bottom: 35px;
		padding: 25px 30px;
		font-size: 16px;
	}
	.login-content .error-message {
		padding: 12px;
	}
}

/*----------  Tab Pane  ----------*/
.login-content .tab-pane {
	/* padding: 0px 20px 0; */
	padding: 0p;
}
.login-content .tab-pane p {
	color: #999;
	line-height: 18px;
}
.login-content .tab-pane hr {
	margin: 10px 15px;
}
.login-content .tab-pane .title {
	color: #8C77AB;
	line-height: 34px;
	font-size: 210%;
	margin:5px 0;
}

@media (min-width: 768px) {
}

@media (min-width: 1200px) {
	.login-content .tab-pane {
		padding: 12px 60px 0;
	}
	.login-content .tab-pane p {
		line-height: 24px;
	}
	.login-content .tab-pane hr {
		margin: 20px 0;
	}
	.login-content .tab-pane .title {
		line-height: 46px;
	}
}

/*----------  Inputs  ----------*/
.login-content .form-input {
	position: relative;
	width: 100%;
	margin: 5px 0;
	text-align: left;
}
.login-content .form-input .icon {
	position: absolute;
	top: 0;
	right: 0;
}
.login-content .form-control {
	padding: 7px 30px 7px 12px;
	font-size: 100%;
	border-radius: 0;
	border-color: #DDD;
	box-shadow: none;
}

.login-content .checkbox {
	float: left;
	color: #A5A7AA;
	margin: -4px 0 0;
	font-size: 90%;
}
.login-content .checkbox label {
	padding: 0;
}
.login-content .checkbox .checkmark {
	display: inline-block;
	color: #000;
	width: 12px;
	height: 12px;
	margin-right: 2px;
	border: 1px solid #CCC;
}
.login-content .checkbox .checkmark:after {
	content: "";
	display: none;
	position: absolute;
	top: 4px;
	left: 4px;
	width: 4px;
	height: 7px;
	border: solid;
	border-width: 0px 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.login-content .checkbox input[type="checkbox"] { display: none; }
.login-content .checkbox input[type="checkbox"]:checked ~ .checkmark:after { display: block; }

.login-content .verification-code {
	width: 180px;
	margin: 20px auto 25px;
}
.login-content .verification-code input {
	float: left;
	width: calc(100%/4 - 10px);
	margin: 0 5px;
	padding: 8px;
	border: 0;
	border-bottom: 1px solid #CECECE;
	text-align: center;
	outline: 0;
}

@media (min-width: 768px) {
}

@media (min-width: 1200px) {
	.login-content .form-input {
		margin-top: 16px;
	}
	.login-content .form-control {
		height: 45px;
		padding: 10px 40px 10px 16px;
	}

	.login-content .checkbox {
		margin: -6px 0 0;
	}
	.login-content .checkbox .checkmark {
		width: 16px;
		height: 16px;
		margin-right: 4px;
	}
	.login-content .checkbox .checkmark:after {
		top: 5px;
		left: 5px;
		width: 6px;
		height: 10px;
		border-width: 0px 3px 3px 0;
	}

	.login-content .verification-code {
		width: 230px;
		margin: 35px auto;
	}
}

/*----------  Button  ----------*/
.login-content .btn {
	background-color: #735E87;
	color: #FFF;
	height: 38px;
	line-height: 2;
}
.login-content .btn-block {
	width: 95%;
	margin: 5px auto 0;
}
.login-content .btn-cancel {
	background-color: #E4E6EB;
	color: #666;
}
.login-content .btn-forgot {
	float: right;
	margin: -4px 0 0;
	font-size: 90%;
}
.login-content .btn-not-me {
	position: absolute;
	top: 10px;
	right: 15px;
}
.login-content .btn-legacy {
	display: inline-block;
	color: #8C77AB;
}
.login-content .btn-legacy.fixed {
	position: fixed;
	left: calc(50% - 230px/2 - 6px);
	background-color: #FFF;
	width: 230px;
	padding: 8px;
	z-index: 1051;
}

.login-content .btn-group {
	width: calc(95% + 6px);
	margin-top: 14px;
}
.login-content .btn-group > .btn {
	width: calc(50% - 6px);
	margin: 0 3px;
}

/* @media (min-width: 768px) {
	.login-content .btn-legacy.fixed {

	}
} */

@media (min-width: 1200px) {
	.login-content .btn {
		height: 50px;
		line-height: 2.2;
	}
	.login-content .btn-block {
		margin-top: 28px;
	}
	.login-content .btn-forgot {
		margin: -6px 0 0;
	}
	.login-content .btn-not-me {
		top: 11px;
	}
	.login-content .btn-legacy.fixed {
		
		left: calc(50% - 435px);
		width: 300px;
		padding: 10px;
	}

	.login-content .btn-group {
		margin-top: 28px;
	}
}

/*----------  Step Progress  ----------*/
.step-progress {
	position: absolute;
	bottom: 20px;
	left: 0;
	color: #CCC;
	width: 100%;
}
.step-progress .step {
	display: inline-block;
	position: relative;
	width: 80px;
}
.step-progress .step-num {
	background-color: #CCC;
	color: #FFF;
	width: 24px;
	height: 24px;
	margin: 0 auto 5px;
	padding: 4px;
	border-radius: 50%;
}

.step-progress .step.active {
	color: #735E87;
}
.step-progress .step.active .step-num {
	background-color: #735E87;
}

.step-progress .progress-bar {
	position: absolute;
	top: 12px;
	background-color: #CCC;
	width: 100%;
	height: 2px;
	text-align: left;
	box-shadow: none;
}
.step-progress .progress-bar span {
	background-color: #735E87;
	height: 100%;
}
.step-progress .progress-bar.bar-1 span {
	width: 140px;
}
.step-progress .progress-bar.bar-2 span {
	width: 222px;
}
.step-progress .progress-bar.bar-3 span {
	width: 100%;
}

@media (min-width: 768px) {
}

@media (min-width: 1200px) {
	.step-progress {
		bottom: 30px;
	}
	.step-progress .step {
		width: 90px;
	}
	.step-progress .step-num {
		width: 30px;
		height: 30px;
		margin-bottom: 8px;
	}

	.step-progress .progress-bar {
		top: 14px;
		height: 3px;
	}
	.step-progress .progress-bar.bar-1 span {
		width: 225px;
	}
	.step-progress .progress-bar.bar-2 span {
		width: 320px;
	}
}

/*----------  #ForgotPassword  ----------*/
#ForgotPassword .form-input .phone-prefix {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 34px;
	line-height: 2.8;
	border-right: 1px solid #DDD;
	text-align: center;
}
#ForgotPassword .form-control[name=hp_number] {
	padding-left: 52px;
}

@media (min-width: 768px) {
}

@media (min-width: 1200px) {
	#ForgotPassword .form-input .phone-prefix {
		width: 50px;
		height: 45px;
	}
	#ForgotPassword .form-control[name=hp_number] {
		padding-left: 66px;
	}
}

/*----------  #ActiveLogin  ----------*/
#ActiveLogin .title {
	line-height: 16px;
	font-size: 18px;
}

#ActiveLogin .user-avatar {
	background-color: #8C77AB;
	width: 30px;
	margin: 5px auto;
	border-radius: 50%;
	overflow: hidden;
}
#ActiveLogin .user-avatar img {
	width: 100%;
}

@media (min-width: 768px) {
}

@media (min-width: 1200px) {
	#ActiveLogin .title {
		line-height: 36px;
	}
	#ActiveLogin .user-avatar {
		width: 50px;
	}
}

/*=====  End of Tab Content  ======*/


/*==========================================
=            Form Custom Select            =
==========================================*/

.form-custom-select .form-control {
	color: #A5A7AA;
}
.form-custom-select .form-control:after {
	top: 0;
	right: 0;
	color: #696969;
	width: 30px;
	height: 34px;
	padding: 4px 7px;
	font-size: 16px;
	border: 0;
}
.form-custom-select .form-select-items {
	top: 100%;
	height: 120px;
	overflow-y: auto;
}

@media (min-width: 768px) {
}

@media (min-width: 1200px) {
	.form-custom-select .form-control:after {
		width: 40px;
		height: 45px;
		padding: 9px 11px;
		font-size: 18px;
	}
	.form-custom-select .form-select-items {
		height: 200px;
	}
}

/*----------  #SelectGame  ----------*/
#SelectGame {
	width: 140px;
	margin: 0 auto;
	font-size: 10px;
	text-transform: uppercase;
}
#SelectGame .form-custom-select .form-control {
	height: 32px;
	padding: 8px 28px 8px 12px;
}
#SelectGame .form-custom-select .form-control:after {
	width: 28px;
	height: 32px;
	padding: 6px 8px;
	font-size: 12px;
}
#SelectGame .form-custom-select .form-select-items {
	font-size: 85%;
}

@media (min-width: 768px) {
	#SelectGame {
		position: absolute;
		top: 8px;
		right: 8px;
		margin: 0;
	}
}

@media (min-width: 1200px) {
	#SelectGame {
		top: 12px;
		right: 12px;
		width: 170px;
		font-size: 14px;
	}
	#SelectGame .form-custom-select .form-control {
		height: 40px;
		padding: 10px 35px 10px 12px;
	}
	#SelectGame .form-custom-select .form-control:after {
		width: 35px;
		height: 40px;
		padding: 8px 10px;
		font-size: 16px;
	}
}

/*=====  End of Form Custom Select  ======*/


/*====================================
=            Legacy Popup            =
====================================*/

.modal-legacy-popup .tutorial {
	position: relative;
	top: 400px;
	left: calc(50% - 270px/2);
	color: #FFF;
	width: 270px;
	font-size: 12px;
	font-weight: 500;
	text-align: center;
}
.modal-legacy-popup p {
	margin-bottom: 10px;
	line-height: 16px;
}
.modal-legacy-popup .tutorial .arrow {
	position: absolute;
	bottom: -38px;
	left: 190px;
	width: 70px;
	transform: rotate(-110deg);
}
.modal-legacy-popup .tutorial .btn-ok {
	background-color: #EF5A28;
	color: #FFF;
	width: 140px;
	padding: 8px 12px;
	border-radius: 20px;
	font-size: 100%;
	font-weight: 500;
}

@media (min-width: 768px) {
	.modal-legacy-popup .tutorial {
		top: 300px;
	}
}

@media (min-width: 1200px) {
	.modal-legacy-popup .tutorial {
		top: 475px;
		left: calc(50% - 310px/2 + 40px);
		width: 310px;
		font-size: 14px;
	}
	.modal-legacy-popup p {
		margin-bottom: 20px;
		line-height: 18px;
	}
	.modal-legacy-popup .tutorial .arrow {
		bottom: -24px;
		left: -12px;
		width: 100px;
		transform: none;
	}
	.modal-legacy-popup .tutorial .btn-ok {
		width: 150px;
		padding: 10px 12px;
	}
}

/*=====  End of Legacy Popup  ======*/

.messi_img {
	display: block;
}

@media (min-width: 1200px) {
	.messi_img {
		display: none;
	}
}

#form-login .form-input, #form-login .p-15, #form-welcome .form-input, #form-welcome .p-15 {
	/* padding: 0 15px; */
	padding:0;
}

.px-15 {
	padding: 0 15px;
}

.title_ani a {
	color:auto !important;
	animation: color-change 1s infinite !important;
  }
  
  @keyframes color-change {
	0% { color: red;}
	50% {color:blue;}
	100% { color: red; }
  }


/*=====  End of Tab Content  ======*/
  /*==================================
=            Mobile Tab            =
==================================*/

#CurrentLogin .btn-send-code {
	position: absolute;
	top: 0;
	right: 0;
	background-color: #735E87;
	color: #FFF;
	width: 85px;
	height: 34px;
	line-height: 1.8;
	white-space: nowrap;
}

#CurrentLogin .form-input .phone-prefix {
	position: absolute;
	top: 0;
	left: 0;
	color: #231F20;
	width: 42px;
	height: 34px;
	line-height: 2.8;
	border-right: 1px solid #DDD;
	text-align:center;
}

#CurrentLogin .form-control[name="hp_number"] {
	padding-left: 55px;
	padding-right: 24px;
}

#CurrentLogin .form-control[name="verify_code"] {
	width: calc(100% - 85px);
}

@media (min-width: 768px) {}

@media (min-width: 1200px) {
	#CurrentLogin .btn-send-code {
		width: 110px;
		height: 45px;
		line-height: 2;
	}

	#CurrentLogin .form-input .phone-prefix {
		width: 60px;
		height: 45px;
		line-height: 2.8;
	}

	#CurrentLogin .form-control[name="hp_number"] {
		padding-left: 75px;
		padding-right: 32px;
	}

	#CurrentLogin .form-control[name="verify_code"] {
		width: calc(100% - 110px);
	}
}



