
body {
	overflow: hidden;
	font-family: 'Raleway', sans-serif;
}

.formPortion {
	width: 40%;
	height: 100vh;
	background-color: #182958;
	flex-direction: column;
	position: relative;
}

.imgPortion {
	width: 60%;
	height: 100vh;
}

.orangeDiv {
	position: absolute;
	top: -10%;
	opacity: 0.7;
	left: 31.5%;
	height: 120vh;
	width: 29vw;
	background-color: var(--varSecondaryColor);
	clip-path: polygon(50% 0, 53% 0, 100% 20%, 100% 80%, 52% 100%, 48% 100%, 0% 80%, 0%
		20%);
	z-index: 1;
}

#headingForSignup {
	position: absolute;
	top: 18%;
	left: 15%;
	font-family: 'Raleway', sans-serif;
	color: white;
	width: fit-content;
	height: fit-content;
	z-index: 2;
}
#brandName{
	font-size: 3.5vw;
}

.login-form {
	position: absolute;
	top: 60%;
	left: 15%;
	z-index: 5;
}

.form {
	position:relative;
	background-color: var(--varSecondaryColor);
	height: 180px;
	width: 300px;
	border-radius: 15px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	padding-right: 10px;
}

.outsideLoginForm {
	color: white;
}

.tagLine {
	z-index: 2;
	position: absolute;
	top: 40%;
	left: 6%;
}

#tagLine {
	color: white;
	font-weight: 350;
	font-size: 41.5px;
}

.logo {
	position: absolute;
	bottom: 6%;
	left: 6%;
	width: 4vw;
	height: fit-content;
}
.forgotPassword{	
	position: absolute;
	bottom: 8%;
	right: 11%;
}
.forgotPassword>a{
	color:#182958;
	text-decoration: none;
}
.email-data {
	display: flex;
	align-items: center;
}

.email-icon {
	width: 21.5%;
	color: #182958;
}

.password-data {
	display: flex;
	align-items: center;
	color: tomato;
}

.password-icon {
	width: 30%;
}

input[type="email"], input[type="password"] {
	border-radius: 50px;	
	height: 30px;
	padding-left: 10px;
	outline: none;
	border: none;
}

.password-data>button {
	background-color: transparent;
	padding: 0;
	border: none;
	outline: none;
	color: white;
	font-size: 30px;
}

#signUpImage {
	width: 100%;
	height: inherit;
	object-fit: cover;
}

#loginbtnM {
	display: none;
}

@media (max-height:400px){
		.googleSignBtn{
		width: 210px!important;
	}
		
}

@media ( max-width :768px) {
	#brandImageDiv{
	   display: flex;
    justify-content: center;
	}
	#brandName{
	 font-size: 8.5vw;
	}
	#brandName{
	    width: 250px!important;
	}

	   
	.orangeDiv {
		display: none;
	}
	.logo {
		width: 150px;
		height: 75px;
		display: none;
	}
	.imgPortion {
		display: none;
	}
	.formPortion {
		width: 100%;
		background: #182958 var(--varImageForSmallScreen);
		background-repeat: no-repeat;
		background-blend-mode: soft-light;
		background-size: cover;
		background-position: center center;
	}
	.login-form {
		left: 50%;
		transform: translateX(-50%);
	}
	#headingForSignup {
		left: 50%;
		transform: translateX(-50%);
	}
	#loginbtn {
		display: none;
	}
	#loginbtnM {
		background-color: white;
		border: none;
		outline: none;
		color: #182958;
		font-size: 30px;
		width: fit-content;
		margin: 0 auto;
		border-radius: 50px;
		display: block;
		padding: 0 20px;
	}
	.password-icon {
		width: 28%;
	}
	input[type="email"], input[type="password"] {
		width: 100%;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.forgotPassword{
		position: unset;
	}
	.email-icon{
		width: 28%;
	}
	@media ( max-width :300px) {
		.form {
			width: 250px;
		}
		.login-form {
			top: 30%;
		}
	}
}
.googleSignBtn {
	cursor:pointer;
	box-shadow: 1px 1px 0px 1px rgba(0, 0, 0, 0.05);
	align-items:center;
	width: 250px;	
	height: 60px;
	background-color: white;
	border-width: 0;
	box-sizing: border-box;
	white-space: nowrap;
	border-radius: 5px;
	transition-property: background-color, box-shadow;
	transition-duration: 150ms;
  	transition-timing-function: ease-in-out;
}

.googleSignBtn:hover {
	box-shadow: 1px 4px 5px 1px rgba(0, 0, 0, 0.1);
}

.googleSignBtn:active {
	background-color: #e5e5e5;
	box-shadow: none;
	transition-duration: 10ms;
}

.iconc {
	display: grid;
	place-items: center;
	width: 20%;
	height: inherit;
	text-align: center;
}

.txtc {
	display: grid;
	place-items: center;
	width: 80%;
	height: inherit;
	text-align: center;
}

.googlesignTxt {
	color: #737373;	
	font-weight: bold;	
}

.alert {
	z-index: 100;
}