.modern-form {
	--primary-light: rgba(59, 130, 246, 0.1);
	--text-main: #1e293b;
	--text-secondary: #64748b;
	--bg-input: #f8fafc;

	position: relative;
	width: 300px;
	padding: 24px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow:
		0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -2px rgba(0, 0, 0, 0.05),
		inset 0 0 0 1px rgba(148, 163, 184, 0.1);
	font-family:
		system-ui,
		-apple-system,
		sans-serif;
}

section {
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgb(118 75 75 / 29%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.form-title {
	font-size: 22px;
	font-weight: 600;
	color: var(--text-main);
	margin: 0 0 24px;
	text-align: center;
	letter-spacing: -0.01em;
}

.input-group {
	margin-bottom: 16px;
}

.input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.form-input {
	width: 100%;
	height: 40px;
	padding: 0 36px;
	font-size: 14px;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	background: var(--bg-input);
	color: var(--text-main);
	transition: all 0.2s ease;
}

.form-input::placeholder {
	color: var(--text-secondary);
}

.input-icon {
	position: absolute;
	left: 12px;
	width: 16px;
	height: 16px;
	color: var(--text-secondary);
	pointer-events: none;
}

.password-toggle {
	position: absolute;
	right: 12px;
	display: flex;
	align-items: center;
	padding: 4px;
	background: none;
	border: none;
	color: var(--text-secondary);
	cursor: pointer;
	transition: all 0.2s ease;
}

.eye-icon {
	width: 16px;
	height: 16px;
}

.submit-button {
	position: relative;
	width: 100%;
	height: 40px;
	margin-top: 8px;
	background: -webkit-linear-gradient(rgb(253 29 29 / 51%), rgb(195 35 35 / 69%));
	color: white;
	border: none;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 500;
	overflow: hidden;
	transition: all 0.2s ease;
}

.button-glow {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,
			transparent,
			rgba(255, 255, 255, 0.2),
			transparent);
	transform: translateX(-100%);
	transition: transform 0.5s ease;
}

.form-footer {
	margin-top: 16px;
	text-align: center;
	font-size: 13px;
}

.login-link {
	color: #64748b;
	text-decoration: none;
	transition: all 0.2s ease;
}

.login-link span {
	color: rgb(195 35 35 / 65%);
	font-weight: 500;
}

/* Hover & Focus States */
.form-input:hover {
	border-color: #cbd5e1;
}

.form-input:focus {
	outline: none;
	border-color: #d314147a;
	background: white;
	box-shadow: 0 0 0 4px rgb(246 59 59 / 10%);
}

.password-toggle:hover {
	color: #d314147a;
	transform: scale(1.1);
}

.submit-button:hover {
	background: -webkit-linear-gradient(rgb(253 29 29 / 61%), rgb(195 35 35 / 77%));
	transform: translateY(-1px);
	box-shadow:
		0 4px 12px rgba(59, 130, 246, 0.25),
		0 2px 4px rgba(59, 130, 246, 0.15);
}

.submit-button:hover .button-glow {
	transform: translateX(100%);
}

.login-link:hover {
	color: var(--text-main);
}

.login-link:hover span {
	color: rgb(195 35 35 / 77%);
}

/* Active States */
.submit-button:active {
	transform: translateY(0);
	box-shadow: none;
}

.password-toggle:active {
	transform: scale(0.9);
}

/* Animation */
@keyframes shake {

	0%,
	100% {
		transform: translateX(0);
	}

	25% {
		transform: translateX(-4px);
	}

	75% {
		transform: translateX(4px);
	}
}

.form-input:not(:placeholder-shown):invalid {
	border-color: #ef4444;
	animation: shake 0.2s ease-in-out;
}

.form-input:not(:placeholder-shown):invalid~.input-icon {
	color: #ef4444;
}


@media only screen and (min-width: 1360px) {
	.modern-form {
		width: 450px;
		
	}

	.form-title {
		font-size: 40px;
		margin: 0 0 30px;
	}

	.form-input {
		width: 100%;
		height: 50px;
		font-size: 17px;
	}

	.submit-button {
		height: 50px;
		font-size: 16px;
	}
	.form-footer {
		font-size: 15px;
	}

	.input-group {
		margin-bottom: 31px;
	}

	.eye-icon {
		width: 23px;
		height: 23px;
	}

	.input-icon {
		left: 9px;
		width: 18px;
		height: 23px;
	}
}
