#log-in-card {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#log-in-card>div {
	width: 100%;
	display: flex;
}

#log-in-card>div:first-child{
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#log-in-card>div:first-child>a{
	width: 50%;
	text-align: center;
	padding: 10px;
	color: #FF0000;
	background-color: #ffffff;
	border-bottom: 2px solid #FF0000;
	font-family: "averta Bold";
	font-size: 14px;
}

#log-in-card>div:first-child>a.active{
	color: #ffffff;
	background-color: #FF0000;
}

#log-in-card>div:last-child{
	padding-top: 20px;
	background-color: #EFEFEF;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.lgntab-items-container {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}

#lgn-itabs-c {
	width: calc( 100% * 2);
	padding: 10px 0px 50px;
	display: flex;
	flex-direction: row;
	position: relative;
	top: 0px;
	left: 0px;
	transition: ease all 0.5s;
}

#lgn-itabs-c.show-right {
	left: -100%;
}

.lgntab-item {
	width: 50%;
}

#title-b {
	width: 100%;
	padding: 10px;
	background-color: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#title-b h2 {
	font-size: 30px;
	font-family: "averta Bold";
	color: #FF0000;
}

#title-b p {
	font-size: 12px;
	padding: 5px 0px;
	text-align: center;
}

.lgntab-item form {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.form-inputs-box {
	width: 100%;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.lgn-input-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.lgn-input-container:not(:last-child) {
	margin-bottom: 15px;
}

.lgn-input-container input {
	width: 100%;
	padding: 5px 20px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
}

.lgn-submit-container {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-bottom: 5px;
}

.lgn-submit-container a {
	padding: 3px 30px;
	border-radius: 8px;
	color: #ffffff;
	background-color: #FF0000;
	box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.3);
}

.lgn-submit-container a:hover {
	transform: scale(1.1,1.1);
}

#remember-row {
	margin-bottom: 30px;
}

#remember-row a {
	color: #FF0000;
	font-size: 12px;
	text-decoration: underline;
}

.lgn-submit-facebook, .lgn-submit-gmail {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.lgn-submit-facebook {
	margin-bottom: 10px;
}

.lgn-submit-facebook a, .lgn-submit-gmail a {
	width: 80%;
	padding: 5px 30px;
	font-size: 14px;
	border-radius: 4px;
	color: #ffffff;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.lgn-submit-facebook a:hover, .lgn-submit-gmail a:hover {
	transform: scale(1.1,1.1);
}

.lgn-submit-facebook a {
	background-color: #0071B9;
}

.lgn-submit-gmail a {
	background-color: #ED5A4F;
}

.lgn-submit-facebook a>svg, .lgn-submit-gmail a>svg {
	margin-right: 20px;
}