@charset "utf-8";
/* CSS Document */
.login-area {
	width:100%;
	float:left;
	height:auto;
	overflow:hidden;
	padding:20px 0px;
}
.login-tab {
	width:49%;
	float:left;
	height:auto;
	overflow:hidden;
	padding:0px;
	margin:.5%;
	/* From https://css.glass */
	background: rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}
.login-tab a {
	background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);		
	text-align:center;
	font-size:22px;
	text-decoration:none;
	padding:15px 10px;
	height:auto;
	display:block;
	clear:both;
	width:100%;
	-webkit-border-top-left-radius: 16px;
	-webkit-border-top-right-radius: 16px;
	-moz-border-radius-topleft: 16px;
	-moz-border-radius-topright: 16px;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
	color:#008cca;
	font-weight:bold;
}
.login-tab p {
	background-color: #0093E9;
	background-image: linear-gradient(160deg, #640000 0%, #973838 100%);
	color:#FFF;
	font-size:14px;
	line-height:30px;
	width:100%;
	padding:15px 0px;
	-webkit-border-bottom-left-radius: 16px;
	-webkit-border-bottom-right-radius: 16px;
	-moz-border-radius-bottomleft: 16px;
	-moz-border-radius-bottomright: 16px;
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
	transition: 0.3s;
	text-align:center;
}
.login-tab div p strong {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color:#FFF;
	color:#F00;
	margin:3px 3px;
	transition: 0.3s;
	font-size:20px;
	line-height:20px !important;
	padding:5px;
}
.login-tab:hover div p {
	background: #fff;
	color:#F00;
}
.login-tab:hover div p strong {
	font-size:24px;
	padding:0px 5px;
}
@media screen and ( max-width: 600px ) {
	.login-tab {
		width:99%;
	}
}
