		font-family: 'Futura Demi', 'Futura PT Demi', 'Futura Std Demi', 'Futura', Arial, sans-serif;
		font-weight: 900;
		font-size: 48px;
		color: var(--reg-white);
	font-family: 'Futura', 'Futura PT', 'Futura Std', Arial, sans-serif;
	font-weight: bold;
	font-size: 48px;
	color: var(--reg-white);
.btn-register-primary {
	width: 100px;
	height: 30px;
	border-radius: 30px;
	background: #F4EFEC;
	color: #700118;
	font-family: 'futura-pt', 'Futura', 'Futura PT', 'Futura Std', Arial, sans-serif;
	font-size: 12px;
	font-weight: 600;
	border: none;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
	box-shadow: none;
	outline: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn-register-primary:hover, .btn-register-primary:focus {
	background: #700118;
	color: #F4EFEC;
}
.register-card input[type="text"],
.register-card input[type="email"],
.register-card input[type="password"] {
	font-family: 'futura-pt', 'Futura', 'Futura PT', 'Futura Std', Arial, sans-serif;
	font-size: 10px;
	font-weight: 100;
	font-style: normal;
	letter-spacing: 0.5px;
}
::placeholder {
	font-family: 'futura-pt', 'Futura', 'Futura PT', 'Futura Std', Arial, sans-serif;
	font-size: 10px;
	font-weight: 100;
	font-style: normal;
	color: #bdbdbd;
	opacity: 1;
}
.register-card {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.register-card form {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}
.register-card .field {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.register-card {
	margin-top: 40px;
}
.avatar-preview {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 0;
}

.avatar-circle {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: #232323;
	border: 2.5px solid var(--reg-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.register-form--avatar {
	margin-top: 0 !important;
}
:root {
  --reg-primary: #700118;
  --reg-white: #F4EFEC;
  --reg-bg: #0d0d0f;
  --reg-panel: #1a1a1a;
  --reg-border: #F4EFEC;
  --reg-muted: #c7c8cc;
	--reg-shadow: none;
}

body {
	background: #1a1a1a;
	color: var(--reg-white);
	font-family: 'Futura', 'Futura PT', 'Futura Std', Arial, sans-serif;
	font-weight: 100;
}

	position: relative;
	max-width: 960px;
	margin: 60px auto 240px;
	padding: 0 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 26px;
	background: transparent;
}

.register-hero__logo {
	display: flex;
	align-items: center;
	filter: brightness(0) invert(0.95) sepia(0.1) saturate(0.7) hue-rotate(0deg) brightness(1.1);
}

.register-hero__logo img {
	width: 80px;
	height: auto;
	background: transparent;
}

.register-hero__title {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	position: relative;
	background: transparent;
}


.register-hero__title p {
	display: block;
	margin: 0 0 8px 0;
	color: var(--reg-white);
	letter-spacing: 0.5px;
	font-weight: 900;
	font-size: 2.5rem;
	text-align: center;
	background: transparent;
}

.register-hero__title h1 {
	margin: 0;
	font-size: 48px;
	letter-spacing: 0.5px;
	color: var(--reg-white);
	font-family: 'Futura', 'Futura PT', 'Futura Std', Arial, sans-serif;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: center;
	text-align: center;
	background: transparent;
}
}

.register-hero__title h1 {
	margin: 0;
	font-size: 3rem;
	letter-spacing: 0.5px;
	color: var(--reg-white);
	font-weight: 900;
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: center;
	text-align: center;
}

.register-card {
	width: 455px;
	max-width: 100%;
	background: #1A1A1A;
	border: 3px solid var(--reg-white);
	border-radius: 16px;
	padding: 40px 35px 45px;
	box-shadow: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	animation: slideInCard 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes slideInCard {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.register-card h2 {
	margin: 0 0 28px;
	font-size: 24px;
	color: var(--reg-white);
	font-family: 'Futura Demi', 'Futura PT Demi', 'Futura Std Demi', 'Futura', Arial, sans-serif;
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.3px;
}

.register-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 0;
	align-items: center;
}

.field {
	position: relative;
}

.field input[type="email"],
.field input[type="text"],
.field input[type="password"] {
	width: 280px;
	height: 48px;
	max-width: 100%;
	padding: 0 18px;
	background: var(--reg-white);
	border: 2px solid #ddd;
	border-radius: 24px;
	color: #1a1a1a;
	font-size: 0.98rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-sizing: border-box;
	margin: 0;
	display: block;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.field input::placeholder {
	color: #bbb;
}

.field input:focus {
	outline: none;
	border-color: var(--reg-primary);
	box-shadow: 0 0 0 4px rgba(112, 1, 24, 0.15), 0 4px 12px rgba(112, 1, 24, 0.2);
	transform: translateY(-2px);
}

.field--password .password-toggle {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	border: none;
	background: transparent;
	color: var(--reg-white);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	font-size: 0.95rem;
}

.password-toggle .toggle-icon {
	pointer-events: none;
}
.password-toggle .toggle-icon img {
	width: 26px;
	height: 26px;
	filter: drop-shadow(0 0 2px #700118);
}

.btn-register-primary {
	margin: 12px auto 0 auto;
	width: 140px;
	height: 40px;
	border: none;
	border-radius: 24px;
	background: var(--reg-white);
	color: var(--reg-primary);
	font-family: 'Futura Demi', 'Futura PT Demi', 'Futura Std Demi', 'Futura', Arial, sans-serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.4px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	white-space: nowrap;
	padding: 0 18px;
	transition: background 0.2s, color 0.2s, box-shadow 0.2s;
	user-select: none;
	position: static;
	overflow: visible;
	box-shadow: none;
}
.btn-register-primary:hover {
	background: var(--reg-primary);
	color: var(--reg-white);
	box-shadow: 0 6px 18px rgba(112, 1, 24, 0.18);
}
.btn-register-primary:hover {
	background: var(--reg-primary);
	color: var(--reg-white);
}
.btn-register-primary:active {
	transform: none;
}


.error-message {
	background: rgba(207, 92, 92, 0.12);
	color: #f6b3b3;
	border: 1px solid rgba(207, 92, 92, 0.35);
	padding: 12px 16px;
	border-radius: 6px;
	font-size: 0.85rem;
	margin-top: 8px;
	text-align: center;
	width: 280px;
	max-width: 100%;
	box-sizing: border-box;
}

/* Step 2 (Avatar) */
.register-hero--step2 {
	margin-top: 40px;
}
section.register-hero--step2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	background: transparent;
}

.register-card--avatar {
	width: 455px;
	max-width: 100%;
	padding: 32px 35px 38px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #1A1A1A;
	border: 3px solid #F4EFEC;
	border-radius: 16px;
	box-shadow: var(--reg-shadow);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	animation: slideInCard 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
	margin-top: 40px !important;
    margin-left: auto;
    margin-right: auto;
}

.register-card--avatar h2 {
	margin-bottom: 28px;
	margin-top: 0;
	text-align: center;
	font-size: 24px;
	font-family: 'Futura', 'Futura PT', 'Futura Std', Arial, sans-serif;
	font-weight: 600;
	letter-spacing: 0.3px;
}

.avatar-preview {
	display: flex;
	justify-content: center;
	margin-bottom: 18px;
	margin-top: 8px;
}

.avatar-circle {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 3px solid var(--reg-white);
	background: #232323;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-bottom: 12px;
}

.avatar-circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	display: block;
}
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	animation: slideInCard 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
	margin: 24px auto 40px;
.avatar-placeholder {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	color: var(--reg-muted);
	font-size: 1.6rem;
}

.avatar-x {
	font-size: 1.8rem;
}

.register-form--avatar {
	gap: 16px;
	width: 100%;
}

.btn-upload {
		white-space: nowrap;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 140px;
	height: 30px;
	border-radius: 5px;
	border: none;
	background: var(--reg-white);
	color: #111;
	font-size: 12px;
	font-weight: 400;
	font-family: 'Futura', 'Futura PT', 'Futura Std', Arial, sans-serif;
	box-shadow: none;
	outline: none;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
	/* Bouton Passer spécifique */
	.btn-skip {
		background: var(--reg-panel) !important;
		color: var(--reg-white) !important;
		font-size: 14px !important;
		font-weight: 600 !important;
		font-family: 'Futura Demi', 'Futura PT Demi', 'Futura Std Demi', 'Futura', Arial, sans-serif !important;
		border: 1.5px solid var(--reg-white) !important;
		border-radius: 24px !important;
		width: 140px !important;
		height: 40px !important;
		padding: 0 18px !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		cursor: pointer !important;
		margin: 12px auto 0 auto !important;
		letter-spacing: 0.4px !important;
		text-align: center !important;
		white-space: nowrap !important;
		box-shadow: none !important;
		user-select: none !important;
		position: static !important;
		overflow: visible !important;
		transition: background 0.2s, color 0.2s, box-shadow 0.2s !important;
	}
	cursor: pointer;
	transition: background 0.2s, color 0.2s, box-shadow 0.2s;
	outline: none;
	user-select: none;
	-webkit-appearance: none;
	appearance: none;
	font-family: 'Futura', 'Futura PT', 'Futura Std', Arial, sans-serif;
	box-shadow: 0 2px 8px rgba(112, 1, 24, 0.10);
	margin-bottom: 8px;
	margin-top: 0;
	letter-spacing: 0.3px;
}

button.btn-upload {
	padding: 10px 16px;
}

.btn-upload:focus {
	outline: none;
	box-shadow: none;
}

.btn-upload:active {
	outline: none;
	border: 2px solid transparent;
}

.btn-upload .upload-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}


.avatar-actions {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-top: 8px;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 18px;
}

.avatar-actions .btn-register-primary {
	width: 120px;
	height: 38px;
	border-radius: 24px;
	background: var(--reg-white);
	color: var(--reg-primary);
	font-weight: 800;
	font-size: 1rem;
	margin: 0;
	box-shadow: 0 6px 24px rgba(112, 1, 24, 0.18);
	letter-spacing: 0.5px;
	border: none;
}

.avatar-actions .btn-register-primary:hover {
	background: var(--reg-primary);
	color: var(--reg-white);
}

.btn-ghost {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 120px;
	height: 38px;
	border-radius: 24px;
	border: none;
	color: #232323;
	background: #e0e0e0;
	font-weight: 700;
	font-size: 1rem;
	padding: 0 18px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	transition: background 0.2s, color 0.2s;
	margin: 0 8px;
	cursor: pointer;
}
.btn-ghost:hover {
	background: #232323;
	color: var(--reg-white);

/* Small text links inside messages */
.success-message a,
.error-message a {
	color: var(--reg-white);
	font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
	.register-hero {
		margin: 40px auto 60px;
		padding: 0 16px;
	}

	.register-hero__logo img {
		width: 180px;
		height: 48px;
		font-size: 1.15rem;
		font-weight: 800;
		box-shadow: 0 6px 24px rgba(112, 1, 24, 0.18);

	.register-hero__title h1 {
		font-size: 36px;
	}

	.register-card,
	.register-card--avatar {
		padding: 26px 22px;
		margin: 40px auto 60px;
		max-width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.avatar-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.btn-ghost,
	.btn-register-primary {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.register-hero {
		gap: 18px;
	}

	.register-hero__title h1 {
		font-size: 1.9rem;
	}

	.register-card h2 {
		font-size: 1.4rem;
	}

	.avatar-circle {
		width: 120px;
		height: 120px;
	}
}
