.login-wrapper {
	min-height: 100vh;
	position: relative;
    background: #F5F5FC;
}
.image-wrap img {
	width: 50%;
	position: relative;
	z-index: 1;
}
.login-image {
	width: 60%;
	background-image: radial-gradient(#a2dfce,#272b2f);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.login-image h2 {
	margin-top: 40px;
	color: #bbfff6;
	font-weight: 600;
	text-align: center;
	text-shadow: 0 1px 2px #000000;
}
.login-image h2 span {
	display: block;
	font-size: 25px;
	margin: 0px 0 5px;
}

.image-wrap {
	max-width: 250px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	position: relative;
}
.image-wrap::after {
	position: absolute;
	content: "";
	height: 1px;
	width: 230px;
	background-color: #ffcd5c;
	border-radius: 25px;
	display: block;
	bottom: -11px;
	right: 0;
}
.image-wrap::before {
	position: absolute;
	height: 50px;
	width: 50px;
	border-radius: 50%;
	background-color: #eae7e1c4;
	content: "";
	left: -50px;
	bottom: 170px;
	box-shadow: 0 20px 70px 10px #9ad4c4;
}
.login-form {
    width: 600px;
    margin: auto;
}

.login-form form {
	padding: 20px;
	box-sizing: border-box;
	border: 1px solid #f4f4f4;
	max-width: 600px;
	margin: 20px auto 0;
	width: 100%;
	background-color: #ffffff;
	box-shadow: 0px 6px 19px #eaeaea;
	border-radius: 15px;
	position: relative;
    z-index: 9;
}
.login-wrapper input {
    height: 44px;
}
.login-form .btn.btn-primary {
	background-color: #5a68c3;
	border-color: #5a68c3;
	width: 100%;
	margin: 50px auto 0;
	height: 44px;
	display: block;
}
.login-form p {
	font-size: 14px;
	text-align: center;
	margin: 20px 0 20px 0;
	color: #8a8a8a;
}
.login-wrapper .checkbox input {
    height: auto;
}
.login-wrapper label{
	font-weight: 100;
}
.login-heading {
	padding-top: 50px;
    padding-bottom: 24px;
}
.login-heading h2{
    color: #444444;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;
}
.login-heading p{
	margin: 0;
	text-align: left;
	color: #444444;
}
.copyright {
    position: absolute;
    bottom: 0;
}
.copyright p{
	text-align: left;
}
.login-wrapper:after {
    content: "";
    background-image: url(../images/login-right.png);
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    background-repeat: no-repeat;
    right: 0;
    background-size: auto;
    background-position: bottom right;
}
.login-wrapper::before {
    content: "";
    background-image: url(../images/login-left.png);
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    background-repeat: no-repeat;
    left: 0;
    background-size: auto;
	background-position: left bottom;
}
.login-form .checkbox label {
    min-height: 20px;
    padding-left: 30px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}

.login-form .checkbox input[type="checkbox"] {
	height: 18px;
    width: 18px;
    margin-left: -30px;
    margin-top: 0 !important;
}
@media screen and (max-width:768px){
    .login-image {
        width: 100%;
    }
    .login-form {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 99;
        top: 10px;
        bottom: 10px;
        overflow: auto;
        max-width: 100%;
    }
}

@media screen and (max-width:680px){
	.login-form {
		padding: 0 15px;
	}
}
@media screen and (max-width:1000px){
	.login-wrapper::before ,.login-wrapper::after{
		display: none;
	}
}