﻿* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	min-height: 100%;
	font-family: 'Segoe UI', Arial, sans-serif;
}

a {
	text-decoration: none;
}

button,
input {
	outline: none;
	border: none;
}

.limiter {
	width: 100%;
}

.container-login100 {
	width: 100%;
	min-height: 100vh;
	background: #f4f7fb;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
}

.wrap-login100 {
	width: 1200px;
	min-height: 700px;
	display: grid;
	grid-template-columns: 60% 40%;
	background: #fff;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 35px 90px rgba(0, 0, 0, 0.18);
}
.login100-pic {
	width: 100%;
	height: 100%;
	background: url('../images/SignUpPhoto.png') center center no-repeat;
	background-size: cover;
	position: relative;
	display: flex;
	align-items: flex-end;
	padding: 70px;
}

.login100-form {
	width: 100%;
	background: #fff;
	padding: 65px 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.login100-form-title {
	font-size: 44px;
	line-height: 1.15;
	font-weight: 900;
	color: #111827;
	text-align: left;
	margin-bottom: 12px;
	display: block;
}

	.login100-form-title::after {
		content: "AeroTrip hesabınıza daxil olun.";
		display: block;
		font-size: 17px;
		font-weight: 400;
		color: #6b7280;
		margin-top: 12px;
	}

.wrap-input100 {
	width: 100%;
	position: relative;
	margin-bottom: 18px;
}

.input100 {
	width: 100%;
	height: 50px;
	border: 1px solid #d4dce7;
	border-radius: 14px;
	padding: 0 18px 0 52px;
	font-size: 16px;
	color: #111827;
	background: #fff;
	transition: 0.3s;
}

	.input100:focus {
		border-color: #ff4b8b;
		box-shadow: 0 0 0 4px rgba(255, 75, 139, 0.12);
	}

	.input100::placeholder {
		color: #6b7280;
	}

.focus-input100 {
	display: none;
}

.symbol-input100 {
	position: absolute;
	left: 19px;
	top: 50%;
	transform: translateY(-50%);
	color: #9ca3af;
	font-size: 16px;
	pointer-events: none;
}

.input100:focus ~ .symbol-input100 {
	color: #ff4b8b;
}

.container-login100-form-btn {
	width: 100%;
	margin-top: 8px;
}

.login100-form-btn {
	width: 100%;
	height: 55px;
	border-radius: 14px;
	background: linear-gradient(135deg, #ff4b8b, #8b5cf6);
	color: #fff;
	font-size: 17px;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 14px 30px rgba(255, 75, 139, 0.25);
	transition: 0.3s;
}

	.login100-form-btn:hover {
		transform: translateY(-2px);
		background: linear-gradient(135deg, #ff3d82, #7c3aed);
	}

.text-center {
	text-align: center;
}

.p-t-12 {
	padding-top: 18px;
}

.p-t-136 {
	padding-top: 32px;
}

.txt1 {
	font-size: 14px;
	color: #6b7280;
}

.pic-text {
	color: #fff;
	max-width: 380px;
	margin-bottom: 40px;
}

	.pic-text h3 {
		font-size: 38px;
		line-height: 1.15;
		font-weight: 900;
		margin-bottom: 18px;
		color: #fff;
	}

	.pic-text p {
		font-size: 17px;
		line-height: 1.7;
		color: #fff;
	}

.txt2 {
	font-size: 14px;
	color: #ff4b8b;
	font-weight: 700;
}

	.txt2:hover {
		color: #8b5cf6;
	}

.text-danger {
	color: #dc2626 !important;
	font-size: 13px;
	display: block;
	margin-top: 6px;
	font-weight: 600;
}

@media (max-width: 992px) {
	.wrap-login100 {
		width: 95%;
		height: auto;
		min-height: auto;
		grid-template-columns: 1fr;
	}

	.login100-pic {
		min-height: 420px;
		height: 420px;
		padding: 35px;
		align-items: center;
	}

	.login100-form {
		padding: 45px 35px 55px;
		justify-content: flex-start;


	}
	.p-t-136 {
		padding-top: 24px;
	}

	.pic-text {
		max-width: 100%;
		margin-bottom: 25px;
		margin: 0;
	}

		.pic-text h3 {
			font-size: 26px;
			line-height: 1.2;
			margin-bottom: 12px;
		}

		.pic-text p {
			font-size: 16px;
			line-height: 1.5;
		}

@media (max-width: 480px) {
	.container-login100 {
		padding: 15px;
	}

	.wrap-login100 {
		min-height: auto;
	}

	.login100-form {
		padding: 35px 22px;
	}

	.login100-form-title {
		font-size: 34px;
	}

	.input100 {
		height: 46px;
		font-size: 15px;
	}
}
