* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
}

body {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f4f6f8;
	color: #333;
}

.container {
	background: #ffffff;
	padding: 40px 30px;
	max-width: 480px;
	width: 90%;
	text-align: center;
	border-radius: 10px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

h2 {
	font-size: 1.8rem;
	margin-bottom: 0px;
	color: #222;
}

p {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 0px;
}

.note {
	font-size: 0.9rem;
	color: #666;
	margin-top: 15px;
}

/* ONE LINE HEADER */
.header {
	display: flex;
	align-items: center;       /* vertical alignment */
	justify-content: center;
	gap: 8px;
	white-space: nowrap;       /* keep in one line */
	margin-bottom: 25px;
}

.logo img {
	height: 60px;
	width: auto;
	display: block;
}

.btn {
	margin-top: 25px;
}

button {
	padding: 12px 28px;
	font-size: 1rem;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	background: #007bff;
	color: #fff;
	transition: background 0.3s ease;
}

button:hover {
	background: #0056b3;
}

@media (max-width: 480px) {

.header {
	flex-direction: row;     /* ✅ keep one line */
	flex-wrap: nowrap;       /* ✅ never wrap */
}

.logo img {
	height: 40px;
}

button {
	width: 100%;
}
}
