/*NOT -> BASLANGIC KISMI STYLE.CSS'DEN  ALMAKTADIR.*/


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
	font-family: 'Poppins', sans-serif;
}

.login1Container {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #000;
	overflow: hidden;
	position: relative;
	height: 100%;
}

.login_box {
	position: relative;
	width: 400px;
	height: 450px;
	background-color: #191919;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 1;
	transition: opacity 1s ease forwards;
}

.login_box form {
	width: 90%;
}

.login_box form h2 {
	font-size: 2em;
	color: #fff;
	text-align: center;
}

.input_box {
	position: relative;
	margin: 30px 0;
	border-bottom: solid 2px #fff;
}

.input_box input:focus~label,
.input_box input:valid~label {
	top: 0;
}


.input_box label {
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%);
	font-size: 1em;
	pointer-events: none;
	color: #fff;
	transition: .5s;
}

.input_box input {
	width: 100%;
	height: 50px;
	background-color: transparent;
	outline: none;
	border: none;
	font-size: 1em;
	color: #fff;
	padding: 0 35px 0 5px;
}

.input_box .icon {
	position: absolute;
	top: 50%;
	right: 8px;
	transform: translateY(-50%);
	font-size: 1.2em;
}

.input_box .input_line {
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2.5px;
	background: #fff;
	transition: .5s ease;
}

.input_check:checked~.input_box .input_line {
	background: #00f7ff;
	box-shadow: 0 0 10px #00f7ff;
}


.input_box .icon i {
	color: #fff;
}

.remember_forgot {
	font-size: .9em;
	color: #fff;
	margin: -15px 0 15px;
	display: flex;
	justify-content: space-between;

}

.remember_forgot label input {
	accent-color: #fff;
	margin-right: 3px;
	transition: .5s ease;
}

.remember_forgot a {
	font-size: .9em;
	color: #fff;
	text-decoration: none;
}

.remember_forgot a:hover {
	text-decoration: underline;

}

.login_button {
	width: 100%;
	height: 40px;
	color: #191919;
	border-radius: 20px;
	border: none;
	outline: none;
	cursor: pointer;
	font-weight: 500;
	font-size: 1em;
}

.register_link {
	color: #fff;
	font-size: .9em;
	text-align: center;
	margin: 25px 0 10px;
}

.register_link p a {
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	font-weight: 600;
}

.register_link p a:hover {
	text-decoration: underline;
}

.login_light {
	position: absolute;
	top: 10px;
	border-radius: 25px;
	width: 300px;
	height: 10px;
	background: #00f7ff;
}


.toggle {
	position: absolute;
	width: 60px;
	height: 100px;
	background: #161616;
	right: -75px;
	top: 0;
	border-radius: 10px;
}

.toggle::before {
	content: "";
	position: absolute;
	width: 10px;
	height: 80%;
	background: #000;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: transform 0.3s ease;
}

.toggle::after {
	content: '';
	position: absolute;
	top: 5px;
	left: 50%;
	transform: translateX(-50%);
	width: 45px;
	height: 45px;
	background: #333;
	border: 2px solid #191919;
	border-radius: 10px;
	cursor: pointer;
	box-shadow: 0 0 10px rgba(0, 0, 0, .5);
	transition: transform 0.3s ease;
}

.toggle .text {
	position: absolute;
	top: 17px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-size: .8em;
	z-index: 1;
	text-transform: uppercase;
	pointer-events: none;
	transition: .5s ease;
}

.input_check {
	position: absolute;
	right: -75px;
	top: 0;
	z-index: 1;
	opacity: 0;
}

.toggle .text.off {
	opacity: 1;
}

.toggle .text.on {
	opacity: 0;
}

.input_check:checked~.toggle .text.off {
	top: 76px;
	opacity: 0;
}



.input_check:checked~.toggle .text.on {
	opacity: 1;
	top: 55px;
	color: #00f7ff;
	text-shadow:
		0 0 15px #00f7ff,
		0 0 30px #00f7ff,
		0 0 45px #00f7ff,
		0 0 60px #00f7ff;
}

.input_check:checked~.toggle:after {
	top: 40px;
}

.light {
	position: absolute;
	top: -150px;
	left: 0;
	width: 100%;
	height: 0;
	background: linear-gradient(to bottom, rgba(255, 255, 255, .3) -50%, rgba(255, 255, 255, 0) 90%);
	clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
	pointer-events: none;
	transition: .5s ease;
}

.input_check:checked~.light {

	height: 400px;
}

.input_check:checked~h2,
.input_check:checked~.input_box label,
.input_check:checked~.input_box .icon i,
.input_check:checked~.remember_forgot a,
.input_check:checked~.remember_forgot label,
.input_check:checked~.register_link,
.input_check:checked~.register_link a {
	color: #00f7ff;
	text-shadow:
		0 0 15px #00f7ff,
		0 0 30px #00f7ff,
		0 0 45px #00f7ff,
		0 0 60px #00f7ff;
}

.input_check:checked~.remember_forgot label input {
	accent-color: #00f7ff;
	background-color: #00f7ff;
}

.input_check:checked~.login_button {
	color: black;
	background: #00f7ff;
	box-shadow:
		0 0 45px #00f7ff;
}


/* ------------------------------------------------------------------  */
/* ------------------------------------------------------------------  */
/* ------------------------------------------------------------------  */
/* ------------------------------------------------------------------  */
/* ------------------------------------------------------------------  */
/* ------------------------------------------------------------------  */
/* ------------------------------------------------------------------  */
/* ------------------------------------------------------------------  */
/* ------------------------------------------------------------------  */
/* ------------------------------------------------------------------  */
/* ------------------------------------------------------------------  */










@media (max-width:550px) {

	header {
		margin-bottom: 0;
	}

	.orta_kisim {
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.login1Container {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		background: #000;
		overflow: hidden;
		position: relative;
		height: 100%;
	}

	.login_box {
		position: relative;
		width: 90%;
		height: auto;
	}

	.login_box form {
		width: 90%;
	}

	.toggle {
		width: 50px;
		height: 90px;
		background: #ccc;
		right: 0;
	}

	.toggle::before {
		width: 10px;
		height: 80%;
		background: #fff;
	}

	.toggle::after {
		width: 35px;
		height: 35px;
	}

	.toggle .text {
		color: #fff;
		font-size: .6em;
	}

	.input_check {
		right: 0;
	}

	.light {
		top: -50%;
		background: linear-gradient(to bottom, rgba(255, 255, 255, .8) -50%, rgba(255, 255, 255, 0) 90%);
	}


}