html, body {
	background-color: #efefef;
	color: #636b6f;
	margin: 0;
}

body{
	display: block;
	position: fixed;
	width: 100%;
	height: 100%;
	overflow: auto;
}

.box-login{
    position: fixed;
    right: 50%;
    width: 450px;
    padding-top: 50px;
    margin-right: -225px;
}

.bg-login{
	display: flex;
	width: 100%;
	height: 100%;
	background-image: url('../storage/images/bg-login.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right 0;
}

.login-title{
	text-align: center;
	margin-bottom: 130px;
	font-size: 42px;
	color: #000;

}

.login-content{
	padding: 40px;
	background-color: #ffffffc9;
	border: 1px solid #dadada;
	border-radius: 8px;
}

.login-image{
	position: relative;
	width: 100px;
	height: 100px;
	margin: -100px auto 0;
	border-radius: 50%;
	border: 5px solid #d6d6d6;
	background-color: #206ba4;
	text-align: center;
	overflow: hidden;
}
.login-image i{
	color: #fff;
	font-size: 48px;
	margin-top: 28px;
}

.login-image img{
	position: absolute;
	left: 50%;
	top: 50%;
	min-width: 100% !important;
	max-width: 120%;
	min-height: 100% !important;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

#form-login{
	margin-top: 45px;
}

.show-pass{
	position: absolute;
	font-size: 15px;
	right: 5px;
	top: 11px;
	z-index: 15;
	cursor: pointer;
}

#form-login .form-group{
	margin-bottom: 20px;
}

#form-login input.form-control{
	font-family: Arial, Helvetica, sans-serif;
	border: 0;
	color: #545454;
	font-size: 13px;
	border-radius: 0;
	padding-right: 35px;
	border-bottom: 1px dashed #bfbfbf;
	background-color: transparent;
}

::-webkit-input-placeholder { /* Edge */
	color: #545454 !important;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #545454 !important;
}

::placeholder {
	color: #545454 !important;
}

#form-login .input-group-text{
	background-color: transparent;
	border-radius: 0;
	padding: 0 9px;
	border: 0;
	font-size: 20px;
	color: #206ba4;
	border-bottom: 1px dashed #bfbfbf;

}
#form-login input.form-control:-webkit-autofill,
#form-login input.form-control:-webkit-autofill:hover,
#form-login input.form-control:-webkit-autofill:focus {
	border: 0;
	border-radius: 0;
	border-bottom: 1px dashed #bfbfbf;
	-webkit-box-shadow: 0 0 0px 1000px #f8f8f8 inset;
	background-color: transparent;
}

.remember{
	width: 90%;
}

.remember span{
	color: #206ba4;
	font-size: 12px;
}

.remember small{
	font-size: 10px;
	color: #5b656a;
}

.forgot{
	color: #206ba4;
	font-size: 12px;
}
.forgot i{
	font-size: 8px
}


.forgot:hover{
	color: #000;
}

.login-footer{
	margin-top: 35px;
	clear: both;
}

.login-footer label{
	width: 100%;
}

.has-error{
	display: block;
	color: #f00;
	font-size: 12px;
	font-style: italic;
	padding-bottom: 10px;
}

#form-login .error input.form-control{
	border-bottom-color: #f00;
}
#form-login .error input.form-control::-webkit-input-placeholder{
	color: #f00;
}
#form-login .error input.form-control::-moz-placeholder{
	color: #f00;
}
#form-login .error input.form-control:-ms-input-placeholder{
	color: #f00;
}
#form-login .error input.form-control:-moz-placeholder {
	color: #f00;
}
#form-login .error .input-group-text{
	border-bottom-color: #f00;
	color: #fff;
	background-color: #f00;
}

#form-login .error .has-error{
	display: block;
}

#form-login button{
	border: 2px solid #206ba4;
	color: #206ba4;
	font-weight: bold;
	padding: 6px 25px 4px;
	border-radius: 25px;
	margin-top: 30px;
}
#form-login button:hover{
	background-color: #206ba4;
	color: #fff;
}

.copyright{
	position: fixed;
	bottom: 20px;
	right: 0;
	width: 100%;
	text-align: center;
	z-index: 100;
	color: #969696;
}
.copyright a{
	color: #78afd8;
}

@media screen and (max-width:1024px){

	.bg-login {
		display: flex;
		width: 300%;
	}

	.box-login{
		position: fixed;
		top: 0;
		left: 0;
		margin: 0 2%;
		width: 96%;
		padding-top: 30px;
	}

	.login-content{
		padding: 40px 20px;
		background-color: #ffffffc9;
		border: 1px solid #dadada;
		border-radius: 8px;
		max-width: 96%;
		width: 500px;
		margin: 0 auto;
	}

	.login-title {
		margin-bottom: 100px;
		font-size: 38px;
	}

	#form-login button{
		margin-top: 40px;
	}

	.copyright{
		position: fixed;
		bottom: 5px;
		right: 0;
		width: 100%;
        font-size: 9px;
	}

	.login-footer .pull-right{
		width:100%
	}
}


@media screen and (max-height:800px){
	

	.box-login {
        position: fixed;
        top: 0;
        left: 0;
        margin: 0;
        width: 100%;
        height: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
        overflow: auto;
        z-index: 500;
	}

	.login-title {
		margin-bottom: 50px;
		font-size: 25px;
	}

	.login-image {
		position: relative;
		width: 80px;
		height: 80px;
		margin: -65px auto 0;
		border-radius: 50%;
		border: 5px solid #d6d6d6;
		background-color: #206ba4;
		text-align: center;
		overflow: hidden;
	}
	.login-image i {
		color: #fff;
		font-size: 35px;
		margin-top: 19px;
	}

	#form-login {
		margin-top: 20px;
	}
	.login-content {
		padding: 20px 20px;
		background-color: #ffffffc9;
		border: 1px solid #dadada;
		border-radius: 8px;
		max-width: 96%;
		width: 500px;
		margin: 0 auto;
	}

	#form-login button {
		margin-top: 0px !important;
	}
}
