@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,400;0,500;0,600;0,700;0,800;1,300&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Karla', sans-serif;
}

body {
	background: #fff;
	transition: 0.4s all;
}

html {
	scroll-behavior: smooth;
	background: #fff;
	color: #555;
}

.login-bg {
	height: 100vh;
	background-image: url('../images/bg-pattern.png'), url('../images/login-bg.jpg');
/*	background-image: url('../images/login-bg1.jpg');*/
	background-size: auto, cover;
	background-position: top left, center center;
	background-repeat: repeat, no-repeat;
	position: relative;
}
.login-bg:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	background: url('../images/absstem-circle.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transform: translate(-50%, -50%);
}
.login-box-wrapper {
	height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.login-box {
	width: 500px;
	height: 500px;
	background: #fff;
	border-radius: 50%;
	/* box-shadow: 0px 0px 5px rgba(0, 0, 0, .5); */
	padding: 20px 50px;
	position: relative;
}

.form-title {
	margin-top: 15px;
	font-weight: 800;
}

.form-label {
	opacity: .8;
}

.cs-input {
	border: 0px;
	border: 1px solid lightgray;
	outline: none;
	padding: 10px;
}

.cs-input:focus {
	outline: none;
	border-color: #ff6501;
}

::placeholder {
	opacity: .5;
	font-size: 13px;
}
.new-login-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.forgot-password a{
	text-decoration: none;
	color: inherit;
	opacity: .8;
}
.rember-me{
	opacity: .8;
}
#btnLogin {
	display: block;
	background: #00509d;
	color: #fff;
	border-radius: 5px;
	padding: 10px;
	text-decoration: none;
	width: 200px;
	margin: auto;
}

#btnLogin:hover {
	background: #00adea;
}

.login-ftr {
	position: fixed;
	right: 0;
	left: 0;
	bottom: 0;
	text-align: center;
}

.login-ftr p {
	font-size: 12px;
	color: #ffffff73;
}

.login-ftr p a {
	text-decoration: none;
	color: #b7b7b775;
}

@media screen and (max-width: 991px){
	.login-box-wrapper{
		justify-content: center;
	}
	.login-box{
		margin-right: auto;
		margin-left: auto;
	}
	.login-bg:before{
		display: none;
	}
}

@media screen and (max-width: 575px){	
	.login-box{
		width: 100%;
		margin-left: 15px;
		margin-right: 15px;
		box-shadow: none;
		border-radius: 5px;
		padding: 10px;
		height: auto;
	}
	.login-ftr p,
	.login-ftr p a{
		color: #9E9E9E;
	}
}