@import url("http://fonts.googleapis.com/css2?familiy=Inter:wght@300;600&display=swap");



* {
	box-sizing: border-box;
}
body {
	padding: 0;
	margin: 0;
	font-family: "Inter", sans-serif;
	background: linear-gradient(45deg,#00A0B8,#E52F12);
	padding: 40px;


}
.container{
	min-height: calc(100vh - 40px * 2);
	display: grid;
	grid-template-columns: 50% 50%;
	border-radius: 10px;
	overflow: hidden;
	width: 100%;
} 
.login-left{
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 100px;
	background-color: white;
	opacity: .7;
}
.login-right{
	width: 100%;
	display: flex;
	background-color: white;
	justify-content: center;
	opacity: .7;
	
}

.login-right .logo {
	padding-top: 30%;
	width: 50%;	
}

.login-right .logo img{
	width: 100%;
}


.login-header{
	margin-bottom: 50px;
}
.login-header h1{
	font-size: 40px;
	margin-bottom: 10px;
}
.login-header p { 
	opacity: .7;
 }

.login-form
	{
		width: 450px;
	}
.login-form &-content {
			display: flex;
			flex-direction: column;
			gap: 35px;
				
		}
.login-form &-footer {
			display: flex;
			gap: 30px;
			margin-top: 70px;
}
.login-form &-footer a{
		flex: 6;
		gap: 15px;
		border: 1px solid black;
		border-radius: 100px;
		padding: .6rem;
		justify-content: center;
		display: flex;
		align-items: center;
		color: black;
		text-decoration: none;
	}
.login-form &-footer a:hover{
		background-color: eee;
	}

.form-item label:not(.checkboxLabel) {
	display: inline-block;
	background-color: white;
	margin-bottom: 10px;
	position: absolute;
	padding: 0 10px;
	transform: translate(30px,-10px);
	font-size: 16px;

}
input[type='text'],input[type='password']{
	border: 1px solid black;
	height: 55px;
	padding: 0 2rem;
	width: 100%;
	outline: none;
	transition: background .5s;
	font-size: 18px;
	border-radius: 100px;
}

.checkbox {
	display: flex;
	align-items: center;
	gap: 7px;
}

input[type='checkbox']{
	width: 20px;
	height: 20px;

}
button {
	border: none;
	background: orangered;
	color: whitesmoke;
	padding: 1rem;
	border-radius: 100px;
	text-align: center;
	font-size: 20px;
	height: 55px;
	cursor: pointer;
	width: 100%;

}
#hide1{
	display: none;
}
.eye{
	position: absolute;
	padding-top: 15px;
	padding-left: 5px;
	height: 55px;

	font-size: 20px;

}
@media (max-width:1350px) {
	.login-left{
		padding: 50px !important;
	}

	.login-form{
		width: 100%;
	}
	.login-form &-footer {
			flex-direction: column;
			gap: 15px;
		}

}
@media (max-width:768px) {
	body{
		padding: 20px;
	}
	.container {
		grid-template-columns: auto;
	}
	.login-right{
		display: none;
	}
}