* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', sans-serif;
	background: url('../images/blur.png') no-repeat center center/cover;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(4px);
}

.card {
	width: 100%;
	max-width: 400px;
	background: url('../images/bg.png') no-repeat center center/cover;
	border-radius: 20px;
	overflow: hidden;
	text-align: center;
	padding: 2rem;
	color: #fff;
	border: 2px solid #f50057;
	position: relative;
}

.card::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.4); /* dark overlay */
	z-index: 0;
	border-radius: 20px;
}

.card > * {
	position: relative;
	z-index: 1;
}

.avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: 3px solid #fff;
	object-fit: cover;
	margin-top: -1.5rem;
}

.card h2 {
	margin-top: 20px;
	font-size: 1.5rem;
	font-weight: bold;
}

.card p {
	margin: 0.5rem 0 1rem;
	font-size: 1rem;
}

input[type="text"] {
	width: 100%;
	padding: 0.8rem;
	border-radius: 10px;
	border: none;
	margin: 1rem 0;
	font-size: 1rem;
}

button {
	width: 100%;
	padding: 1rem;
	background-color: #d50060;
	color: white;
	font-size: 1rem;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	font-weight: bold;
}

button:hover {
	background-color: #c2185b;
}

.footer-love {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.9rem;
  padding: 0.5rem;
  z-index: 100;
  backdrop-filter: blur(3px);
  font-family: 'Segoe UI', sans-serif;
}
