@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,#357951,#ffffff,#006fba);
	/*padding: 40px;*/

}
.container{
	min-height: calc(100vh);
	display: grid;
	grid-template-columns: 50% 50%;
	/*border-radius: 10px;*/
	overflow: hidden;
	


} 
.login-left{
	padding: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: #357951;
	opacity: 1;
	vertical-align: center;
	/*background-image: url("Okul.jpg");
	background-position: center; 
  background-repeat: no-repeat; 
   background-size: 100% 100%;*/
}
.login-right{
	padding: 100px;
	width: 100%;
	display: flex;
	flex-direction: column;
	background-color: #2196F3;
	justify-content: center;
	opacity: 1;
	vertical-align: center;
	/*background-image: url("ikam.jpg");
	background-position: center; 
  background-repeat: no-repeat; 
  background-size: 100% 100%;*/
	
}

.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: #357951;
	color: whitesmoke;
	padding: 1rem;
	border-radius: 100px;
	text-align: center;
	font-size: 20px;
	height: 55px;
	cursor: pointer;
	width: 100%;

}



.login-left:hover .overlay2 {
  width: 100%;
  
}

.login-left {
  position: relative;
  width: 100%;
}
.login-right:hover .overlay {
  width: 100%;
  left: 0;
}
.login-right {
  position: relative;
  width: 100%;
}
.overlay {
  position: absolute;
  opacity: 0.9;
  bottom: 0;
  left: 100%;
  right: 0;
  background-color: #2F4F4F;
  overflow: hidden;
  width: 0;
  height: 100%;
  transition: .5s ease;
}
.overlay2 {
  position: absolute;
  bottom: 0;
  opacity: 0.9;
  left: 0;
  right: 0;
  background-color: #2F4F4F;
  overflow: hidden;
  width: 0;
  height: 100%;
  transition: .5s ease;
}
.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.image {
  display: block;
  width: 100%;
 	height: auto;
}

.logolar{
	margin-top: -150px;
	text-align: center;
	background-color: white;
	width: 100%; 
	height: 100px;
	justify-content: center;
	

}

@media screen and (max-width:1360px) {
	

	.container {
		grid-template-columns: auto;
	}
}

@media screen and (max-width:1280px) {
	
	.container {
		grid-template-columns: 50% 50%;
	}
	.login-left{
	padding: 100px;
	}
	.login-right{
		padding: 100px;
	}

}

@media screen and (max-width:500px) {
	
	.container {
			grid-template-columns: auto;
	}
	.login-left{
	padding: 50px;
	}
	.login-right{
		padding: 50px;
	}
}
