@import url('https://fonts.googleapis.com/css?family=Raleway:400,700');
@import './eQsetThemes.css';

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;	
	font-family: Raleway, sans-serif;
}

body {
	/* background: linear-gradient(90deg, #C7C5F4, #776BCC);		 */
	display: block;
    /* width: 900px; */
    /* height: 420px; */
	height: fit-content;
    margin: 0 auto;
    /* padding: 30px 0px; */
	background: linear-gradient(rgba(0, 0, 0, 0.87), rgba(0, 0, 0, 0.8)), url(../images/loginbanner_1.jpg) 0 0 no-repeat;
	background-position: center; /* Center the image */
	background-size: cover; /
}

.container {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

.screen {		
	background: linear-gradient(90deg,  #f2cb10, #f8d113);		
	position: relative;	
	height: 520px;
	width: 360px;	
}

.screen__content {
	z-index: 1;
	position: relative;	
	/* height: 100%; */
}

.screen__background {		
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);	
}

.screen__background__shape {
	transform: rotate(45deg);
	position: absolute;
}

.screen__background__shape1 {
	height: 520px;
	width: 520px;
	background: #FFF;	
	top: -50px;
	right: 120px;	
	border-radius: 0 72px 0 0;
}

.screen__background__shape2 {
	height: 220px;
	width: 220px;
	background: #141943;	
	top: -172px;
	right: 0;	
	border-radius: 32px;
}

.screen__background__shape3 {
	height: 540px;
	width: 190px;
	background: linear-gradient(270deg, #141943, #141943);
	top: -24px;
	right: 0;	
	border-radius: 32px;
}

.screen__background__shape4 {
	height: 400px;
	width: 200px;
	background: #141943;	
	top: 420px;
	right: 50px;	
	border-radius: 60px;
}

.login {
	width: 320px;
	padding: 30px;
	/* padding-top: 156px; */
}

.login__field {
	padding: 20px 0px;	
	position: relative;	
}

.login__icon {
	position: absolute;
	top: 30px;
	color: #141943;
}

.login__input {
	border: none;
	border-bottom: 2px solid #D1D1D4;
	background: none;
	padding: 10px;
	padding-left: 24px;
	font-weight: 700;
	width: 96%;
	transition: .2s;
}

.login__input:active,
.login__input:focus,
.login__input:hover {
	outline: none;
	border-bottom-color: #6A679E;
}

.login__submit {
	background: #fff;
    font-size: 14px;
    margin-top: 30px;
    padding: 16px 20px;
    border-radius: 26px;
    border: 1px solid #f8d113;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    width: 100%;
    color: #141943;
    box-shadow: 0px 2px 2px #f7d013;
    cursor: pointer;
    transition: .2s;
}

.login__submit:active,
.login__submit:focus,
.login__submit:hover {
	border-color: #141943;
	outline: none;
}

.button__icon {
	font-size: 24px;
	margin-left: auto;
	color: #141943;
}

.social-login {	
	position: absolute;
	height: 140px;
	width: 160px;
	text-align: center;
	bottom: 0px;
	right: 0px;
	color: #fff;
}

.social-icons {
	display: flex;
	align-items: center;
	justify-content: center;
}
/* Start Footer Section */
.footer{
	clear: both;
	position: fixed;
	left: 0;
	bottom: 0;
	width:100%;
	height:var(--footer-height);
	background-color:var(--primary-color-light);
	color:#fff;
	text-align:right;
	line-height:30px;
	}
	.footer p{
		font-size:11px;
		padding-right:50px;
	}
	/* END Footer Section */


	/* Start Global Prompt Section */

.Prompt-Container {
	position: fixed;
	z-index: 1100;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow-x: scroll;
	margin: 0 auto;
	background-color: #ffffff55;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	display: none;

	animation: PromptAMD 2s;



}

.PromptSuccess,
.PromptFail {
	position: relative;
	z-index: 1000;
	margin: 0 auto;
	width: 350px;
	height: fit-content;
	padding: 15px;
	border: 1px solid #7bed9f;
	color: #3c763d;
	background-color: #dff0d8;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	animation-name: PromptAMD;
	animation-duration: 2s;

}

.PromptFail {
	color: #a94442;
	background-color: #f2dede;
	border-color: #ff7675;
}

.close {
	position: relative;
	left: 26px;
	top: -27px;
	float: right;
	width: 25px;
	height: 25px;
	border-radius: 6px;
	border-color: inherit;
	color: inherit;
}

/* End of  Global Prompt Section */

/* Password Eye-Icon CSS Starts */
#eye_icon{
    position: absolute;
    font-size: 1.2em;
    right: 110px;
    top: 228px;
    color: #141943;
}
/* Password Eye-Icon CSS Ends */