body {
	font-family: Arial, sans-serif;
	background: linear-gradient(135deg, #ffb6c1 0%, #ffe4e1 100%);
	margin: 0;
	padding: 0;
}
.container {
	max-width: 600px;
	margin: 40px auto;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.1);
	padding: 32px;
}
h1 {
	color: #e75480;
	text-align: center;
}
label {
	display: block;
	margin-top: 16px;
	color: #e75480;
}
input, select, button {
	width: 100%;
	margin-top: 8px;
	padding: 8px;
	border-radius: 8px;
	border: 1px solid #e75480;
	font-size: 16px;
}
button {
	background: #e75480;
	color: #fff;
	border: none;
	margin-top: 16px;
	cursor: pointer;
}
button:hover {
	background: #ffb6c1;
	color: #e75480;
}
.card-preview {
	margin-top: 32px;
	min-height: 220px;
	background: linear-gradient(135deg, #ffe4e1 0%, #ffb6c1 100%);
	border-radius: 16px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	padding: 24px;
	text-align: center;
	color: #e75480;
	font-size: 22px;
	position: relative;
}
.card-preview img {
	max-width: 120px;
	border-radius: 12px;
	margin-bottom: 16px;
}
.footer-signature {
	margin-top: 32px;
	text-align: center;
	font-size: 16px;
	color: #e75480;
	font-family: 'Brush Script MT', cursive, Arial, sans-serif;
}