﻿body{
margin:0;
padding:0;
font-family:roboto;
background: #EF3C43;
background-image:url('../img/bg.jpg');
background-repeat: no-repeat;
background-size: cover;
/*background-image: url("../img/2123116546.jpg");*/
/*background: -moz-radial-gradient(center, ellipse cover,  #0264d6 1%, #1c2b5a 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(1%,#0264d6), color-stop(100%,#1c2b5a));
background: -webkit-radial-gradient(center, ellipse cover,  #0264d6 1%,#1c2b5a 100%);
background: -o-radial-gradient(center, ellipse cover,  #0264d6 1%,#1c2b5a 100%);
background: -ms-radial-gradient(center, ellipse cover,  #0264d6 1%,#1c2b5a 100%);
background: radial-gradient(ellipse at center,  #0264d6 1%,#1c2b5a 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0264d6', endColorstr='#1c2b5a',GradientType=1 );
height:calc(100vh);
width:100%;*/
/*background: -webkit-linear-gradient(left,#1c2b5a, #0264d6, #1c2b5a);
background: -o-linear-gradient(left,#1c2b5a, #0264d6, #1c2b5a);
background: -moz-linear-gradient(left,#1c2b5a, #0264d6, #1c2b5a);
background: linear-gradient(to right,#1c2b5a, #0264d6, #1c2b5a);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0264d6', endColorstr='#1c2b5a',GradientType=1 );
height:calc(100vh);
width:100%;*/
}
#siteseal{
	position: fixed;
   z-index: 100;
   right: 0px;
   bottom:0px;
}
.empresa{
	width:500px;
	height:100%;
	background-image:url('../img/bg2.png');
    background-size:cover;
    z-index: +1;
	position: absolute;
}
.empresa2{
	width:500px;
	height:100%;
	background-image:url('../img/bg2.png');
    background-size:cover;
	right:0px;
    z-index: +2;
	position: absolute;
}
.login-card{
	min-height:100vh;
	/*background-image:url('../img/bg.jpg');*/
	background-size:cover;
	-moz-background-size:cover;
	-ms-background-size:cover;
	-wenkit-background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	position:relative;
	border-radius:5px;
	/*-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 6px 0 rgba(0, 0, 0, 0.12);*/
	z-index:2;
	padding:0;
	width:400px;
	left:50%;
	margin-left: -200px;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align:center;
	-ms-flex-align:center;
     align-items:center;
	-webkit-box-pack:center;
	-ms-flex-pack:center;
    justify-content:center;
	font-family:roboto!important;
}

.login-card:after{
	/*background: linear-gradient(-180deg, rgb(8, 102, 198), rgb(255, 255, 255));*/ /* Login Card Arkaplan Rengi */
	/*background: -webkit-linear-gradient(-135deg, rgb(8, 102, 198), rgb(255, 255, 255));*/ /* Login Card Arkaplan Rengi */
	/*background: rgba(255, 255, 255, 0.3);*/
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	content:"";
	opacity:0.8;
	z-index:3;
}


.login-card > form{
	z-index:4;
	position:relative;
	padding:0px 25px;
	width:100%;
}

.logo-kapsul{
	text-align:center;
	position:relative;
	/*opacity:0.8;*/
}

.logo{
	width:250px;
	height:auto;
	padding:50px 0px;
}

/* form başlangıç stiller ------------------------------- */
.group 			  {
	position:relative;
	margin-bottom:45px;
}
.group input 				{
	font-size:18px;
	padding:10px 10px 10px 10px;
	display:block;
	width:100%;
	border:none;
	border-bottom:1px solid rgba(255,255,255, 0.3);
	background:none;
	color:#fff;
}
.group input:focus 		{ outline:none; }

/* LABEL ======================================= */
.group label 				 {
	color:rgba(255,255,255, 0.5);
	font-size:18px;
	font-weight:normal;
	position:absolute;
	pointer-events:none;
	left:5px;
	top:5px;
	transition:0.2s ease all;
	-moz-transition:0.2s ease all;
	-webkit-transition:0.2s ease all;
}

/* active durum */
.group input:focus ~ label, input:valid ~ label 		{
	top:-20px;
	font-size:14px;
	color:rgba(255,255,255, 0.7);
}

/* BOTTOM BARS ================================= */
.bar 	{ position:relative; display:block; width:100%; }
.bar:before, .bar:after 	{
	content:'';
	height:2px;
	width:0;
	bottom:1px;
	position:absolute;
	background:rgba(255,255,255, 0.7);
	transition:0.2s ease all;
	-moz-transition:0.2s ease all;
	-webkit-transition:0.2s ease all;
}
.bar:before {
	left:50%;
}
.bar:after {
	right:50%;
}

/* active durum bar */
.group input:focus ~ .bar:before, .group input:focus ~ .bar:after {
	width:50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
	position:absolute;
	height:0%;
	width:100px;
	top:25%;
	left:0;
	pointer-events:none;
	opacity:0.5;
}

/* active durum */
.group input:focus ~ .highlight {
	-webkit-animation:inputHighlighter 0.3s ease;
	-moz-animation:inputHighlighter 0.3s ease;
	animation:inputHighlighter 0.3s ease;
}

/* form animasyon ================ */
@-webkit-keyframes inputHighlighter {
	from { background:rgba(255,255,255, 0.7); }
	to 	{ width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
	from { background:rgba(255,255,255, 0.7); }
	to 	{ width:0; background:transparent; }
}
@keyframes inputHighlighter {
	from { background:rgba(255,255,255, 0.7); }
	to 	{ width:0; background:transparent; }
}

.input-ikon{
	font-size:25px!important;
	position:relative;
}

.input-sifre-ikon{
	font-size:22px!important;
	position:relative;
}

.span-input{
	margin-left:10px;
	position:relative;
	top:-5px;
}

.giris-yap-buton,.kayit-ol-buton,.sifre-hatirlat-buton{
	/*background: linear-gradient(-135deg, rgb(63, 81, 181), rgb(233, 30, 99));
	background: -webkit-linear-gradient(-135deg, rgb(63, 81, 181), rgb(233, 30, 99));*/
	background: rgba(255,255,255,1);
	display:block;
	text-align:center;
	text-decoration:none;
	color:#EF3C43;
	font-family:roboto;
	font-weight:100;
	padding:10px;
	border-radius:3px;
	outline:none;
	opacity:0.8;
}
.giris-yap-buton:hover,.kayit-ol-buton:hover,.sifre-hatirlat-buton:hover{
	background: rgba(255,255,255,0.8);
}

.forgot-and-create{
	margin:20px 0px;
}

.forgot-and-create a{
	color:#bbb;
	font-size:12px;
	text-decoration:none;
	font-weight:100;
	margin-right:10px;
}


/* Geçiş Links Forgot and Create */
.zaten-hesap-var-link{
	color:#bbb;
	font-size:14px;
	padding:20px 0px;
	text-decoration:none;
	display:block;
}
.animate0 {
   	-webkit-animation-duration: .8s;
	-webkit-animation-delay: 0s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .8s;
	-moz-animation-delay: 0s;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: both;
	-ms-animation-duration: .8s;
	-ms-animation-delay: 0s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .8s;
	animation-delay: 0s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}
.bounceIn {
	-webkit-animation-name: bounceIn;
	-moz-animation-name: bounceIn;
	-o-animation-name: bounceIn;
	animation-name: bounceIn
}
@media only screen and (max-width: 1024px){
.empresa{
	display:none;
}
.empresa2{
	display:none;
}
}
@media only screen and (max-width: 400px) {
.login-card{
	min-height:100vh;
	/*background-image:url('../img/bg.jpg');*/
	background-size:cover;
	-moz-background-size:cover;
	-ms-background-size:cover;
	-wenkit-background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	position:relative;
	border-radius:5px;
	/*-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 6px 0 rgba(0, 0, 0, 0.12);*/
	z-index:2;
	padding:0;
	left:0%;
	margin-left: -0px;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align:center;
	-ms-flex-align:center;
     align-items:center;
	-webkit-box-pack:center;
	-ms-flex-pack:center;
    justify-content:center;
	font-family:roboto!important;
}
.logo{
	width:180px;
	height:auto;
	padding:50px 0px;
}
}
