* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.container {
	width: 100%;
	max-width: 450px;
	background: white;
	border-radius: 16px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	animation: fadeIn 0.5s ease-out;
}

.header {
	background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
	color: white;
	padding: 30px 24px;
	text-align: center;
}

.header .logo {
	font-weight: 700;
	font-size: 28px;
	letter-spacing: 0.5px;
}

.header .subtitle {
	font-size: 16px;
	opacity: 0.9;
	margin-top: 8px;
}

.content {
	padding: 30px;
}

.form-group {
	margin-bottom: 24px;
}

.form-group label {
	display: block;
	font-weight: 600;
	color: #374151;
	margin-bottom: 8px;
	font-size: 16px;
}

.form-group input {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid #e5e7eb;
	border-radius: 10px;
	font-size: 16px;
	transition: all 0.3s ease;
	background-color: #f9fafb;
}

.form-group input:focus {
	outline: none;
	border-color: #4f46e5;
	background-color: white;
	box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.btn-submit {
	width: 100%;
	padding: 16px;
	background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
	color: white;
	border: none;
	border-radius: 10px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px rgba(79, 70, 229, 0.2);
}

.btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 15px rgba(79, 70, 229, 0.3);
}

.btn-submit:active {
	transform: translateY(0);
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 600px) {
	body {
		padding: 15px;
	}

	.container {
		max-width: 100%;
	}

	.content {
		padding: 25px 20px;
	}

	.header {
		padding: 25px 20px;
	}

	.header .logo {
		font-size: 24px;
	}
}

@media (max-width: 400px) {
	.content {
		padding: 20px 15px;
	}

	.header {
		padding: 20px 15px;
	}
}