.hma-wrap {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	background: #F2EFEA;
	font-family: 'Inter', sans-serif;
	box-sizing: border-box;
}

.hma-wrap * {
	box-sizing: border-box;
}

.hma-card {
	width: 100%;
	max-width: 420px;
	background: #FFFFFF;
	border-radius: 24px;
	padding: 40px 36px;
	box-shadow: 0 20px 60px rgba(44, 40, 36, 0.08);
	border: 1px solid rgba(44, 40, 36, 0.06);
}

.hma-card-wide,
.hma-wrap-wide .hma-card {
	max-width: 640px;
}

.hma-brand {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 800;
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: linear-gradient(90deg, #25D366, #6228D7 60%, #D62976);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 18px;
}

.hma-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 700;
	font-size: 28px;
	color: #2C2824;
	margin: 0 0 8px;
}

.hma-subtitle {
	font-size: 15px;
	color: rgba(44, 40, 36, 0.65);
	margin: 0 0 28px;
	line-height: 1.5;
}

.hma-form {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.hma-label {
	font-size: 13px;
	font-weight: 600;
	color: #2C2824;
	margin-top: 14px;
}

.hma-input {
	width: 100%;
	padding: 13px 16px;
	border-radius: 12px;
	border: 1.5px solid rgba(44, 40, 36, 0.14);
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: #2C2824;
	background: #F2EFEA;
	transition: border-color 0.15s ease;
}

.hma-input:focus {
	outline: none;
	border-color: #6228D7;
	background: #FFFFFF;
}

.hma-button {
	margin-top: 24px;
	width: 100%;
	padding: 14px 20px;
	border-radius: 999px;
	border: none;
	background: #2C2824;
	color: #FFFFFF;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	transition: transform 0.15s ease, opacity 0.15s ease;
	text-align: center;
	text-decoration: none;
	display: inline-block;
}

.hma-button:hover {
	opacity: 0.9;
	transform: translateY(-1px);
	color: #FFFFFF;
}

.hma-button-link {
	margin-bottom: 12px;
}

.hma-link {
	display: block;
	text-align: center;
	margin-top: 20px;
	font-size: 14px;
	color: #6228D7;
	text-decoration: none;
	font-weight: 600;
}

.hma-link:hover {
	text-decoration: underline;
	color: #6228D7;
}

.hma-notice {
	padding: 12px 16px;
	border-radius: 12px;
	font-size: 14px;
	margin-bottom: 18px;
	line-height: 1.4;
}

.hma-notice-error {
	background: rgba(214, 41, 118, 0.08);
	color: #D62976;
	border: 1px solid rgba(214, 41, 118, 0.2);
}

.hma-notice-success {
	background: rgba(37, 211, 102, 0.1);
	color: #1b8a4a;
	border: 1px solid rgba(37, 211, 102, 0.25);
}
