	.invitation-register-page {
		min-height: calc(100vh - 200px);
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 60px 20px;
		background: #f8fafc;
	}

	/* Container principal */
	.invitation-register-container {
		background: white;
		border-radius: 24px;
		box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
		max-width: 900px;
		/* Wider layout */
		width: 100%;
		overflow: hidden;
		display: grid;
		grid-template-columns: 320px 1fr;
	}

	/* En-tête (Sidebar style for wider layout) */
	.invitation-header {
		background: linear-gradient(135deg, var(--store-color) 0%, color-mix(in srgb, var(--store-color) 80%, black) 100%);
		padding: 40px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		color: white;
		height: 100%;
	}

	.reseller-logo {
		max-width: 200px;
		max-height: 100px;
		object-fit: contain;
		margin-bottom: 20px;
		filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
	}

	.reseller-name {
		font-size: 1.5rem;
		font-weight: 700;
		color: white;
		margin-bottom: 24px;
		line-height: 1.3;
	}

	.reseller-name-badge {
		font-size: 2rem;
		font-weight: 800;
		color: white;
		margin-bottom: 24px;
	}

	.invitation-badge {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		background: rgba(255, 255, 255, 0.15);
		color: white;
		padding: 8px 16px;
		border-radius: 100px;
		font-size: 0.9rem;
		font-weight: 500;
		backdrop-filter: blur(8px);
		border: 1px solid rgba(255, 255, 255, 0.2);
	}

	/* Contenu */
	.invitation-content {
		padding: 50px;
	}

	.invitation-content h1 {
		margin: 0 0 12px;
		font-size: 1.875rem;
		font-weight: 800;
		color: #1e293b;
		line-height: 1.2;
		letter-spacing: -0.02em;
	}

	.invitation-content .subtitle {
		margin: 0 0 32px;
		color: #64748b;
		font-size: 1.05rem;
		line-height: 1.6;
	}

	.invitation-content .subtitle strong {
		color: var(--store-color);
		font-weight: 700;
	}

	/* Messages d'erreur */
	.form-error-message {
		display: flex;
		align-items: center;
		gap: 12px;
		padding: 16px;
		background: #fef2f2;
		border: 1px solid #fee2e2;
		border-radius: 12px;
		color: #991b1b;
		font-size: 0.95rem;
		font-weight: 500;
		margin-bottom: 28px;
	}

	/* Formulaire */
	.invitation-form {
		display: flex;
		flex-direction: column;
		gap: 32px;
	}

	.form-section {
		padding-top: 0;
		border-top: none;
	}

	.form-section h3 {
		display: flex;
		align-items: center;
		gap: 10px;
		margin: 0 0 20px;
		font-size: 1.1rem;
		font-weight: 700;
		color: #334155;
		padding-bottom: 12px;
		border-bottom: 2px solid #f1f5f9;
	}

	.form-section h3 svg {
		color: var(--store-color);
		width: 20px;
		height: 20px;
	}

	.form-row {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}

	.form-group {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.form-group label {
		font-size: 0.9rem;
		font-weight: 600;
		color: #475569;
	}

	.form-group label .required {
		color: #ef4444;
	}

	.form-group input {
		padding: 12px 16px;
		border: 2px solid #e2e8f0;
		border-radius: 12px;
		font-size: 1rem;
		transition: all 0.2s;
		background: #fff;
		color: #1e293b;
		font-weight: 500;
	}

	.form-group input:focus {
		outline: none;
		border-color: var(--store-color);
		background: #fff;
		box-shadow: 0 0 0 4px color-mix(in srgb, var(--store-color) 10%, transparent);
	}

	.form-group input.readonly-field {
		background: #f8fafc;
		border-color: #f1f5f9;
		color: #64748b;
		cursor: not-allowed;
	}

	.field-hint {
		font-size: 0.85rem;
		color: #94a3b8;
		margin-top: 4px;
	}

	/* Password input */
	.password-input-wrapper {
		position: relative;
		display: flex;
	}

	.password-input-wrapper input {
		flex: 1;
		padding-right: 48px;
	}

	.toggle-password {
		position: absolute;
		right: 12px;
		top: 50%;
		transform: translateY(-50%);
		background: none;
		border: none;
		color: #94a3b8;
		cursor: pointer;
		padding: 8px;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: color 0.2s;
		border-radius: 8px;
	}

	.toggle-password:hover {
		color: var(--store-color);
		background: #f8fafc;
	}

	/* Password strength */
	.password-strength {
		display: flex;
		align-items: center;
		gap: 12px;
		margin-top: 12px;
	}

	.strength-bar {
		flex: 1;
		height: 6px;
		background: #f1f5f9;
		border-radius: 100px;
		overflow: hidden;
	}

	.strength-fill {
		height: 100%;
		width: 0;
		border-radius: 100px;
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.strength-text {
		font-size: 0.8rem;
		font-weight: 600;
		min-width: 90px;
		text-align: right;
	}

	/* Checkbox */
	.checkbox-group {
		margin-top: 8px;
		padding: 16px;
		background: #f8fafc;
		border-radius: 12px;
		border: 1px solid #f1f5f9;
	}

	.checkbox-label {
		display: flex;
		align-items: flex-start;
		gap: 14px;
		cursor: pointer;
		font-size: 0.9rem;
		color: #475569;
		line-height: 1.5;
	}

	.checkbox-label input[type="checkbox"] {
		display: none;
	}

	.checkbox-label .checkmark {
		width: 22px;
		height: 22px;
		border: 2px solid #cbd5e1;
		border-radius: 6px;
		flex-shrink: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all 0.2s;
		margin-top: 1px;
		background: white;
	}

	.checkbox-label input[type="checkbox"]:checked+.checkmark {
		background: var(--store-color);
		border-color: var(--store-color);
	}

	.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
		content: '✓';
		color: white;
		font-size: 14px;
		font-weight: 800;
	}

	.checkbox-label a {
		color: var(--store-color);
		text-decoration: none;
		font-weight: 600;
		transition: opacity 0.2s;
	}

	.checkbox-label a:hover {
		opacity: 0.8;
		text-decoration: underline;
	}

	/* Boutons */
	.btn-primary {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 16px 32px;
		background: linear-gradient(135deg, var(--store-color) 0%, color-mix(in srgb, var(--store-color) 90%, black) 100%);
		color: white;
		border: none;
		border-radius: 14px;
		font-size: 1.05rem;
		font-weight: 700;
		cursor: pointer;
		transition: all 0.2s;
		text-decoration: none;
		box-shadow: 0 10px 20px -5px color-mix(in srgb, var(--store-color) 40%, transparent);
	}

	.btn-primary:hover {
		transform: translateY(-2px);
		box-shadow: 0 15px 30px -5px color-mix(in srgb, var(--store-color) 50%, transparent);
	}

	.btn-full {
		width: 100%;
	}

	/* Lien login */
	.login-link {
		text-align: center;
		margin-top: 32px;
		padding-top: 24px;
		border-top: 1px solid #f1f5f9;
		color: #64748b;
		font-size: 0.95rem;
	}

	.login-link a {
		color: var(--store-color);
		font-weight: 700;
		text-decoration: none;
		margin-left: 4px;
	}

	.login-link a:hover {
		text-decoration: underline;
	}

	/* Responsive Styles */
	@media (max-width: 900px) {
		.invitation-register-container {
			grid-template-columns: 1fr;
			max-width: 500px;
		}

		.invitation-header {
			padding: 30px;
		}

		.invitation-content {
			padding: 30px;
		}
	}

	@media (max-width: 600px) {
		.form-row {
			grid-template-columns: 1fr;
		}

		.invitation-header {
			padding: 24px;
		}

		.invitation-content {
			padding: 24px;
		}

		.invitation-content h1 {
			font-size: 1.5rem;
		}
	}

	/* Succès */
	.invitation-success-container {
		display: flex;
		justify-content: center;
		width: 100%;
	}

	.success-card {
		background: white;
		border-radius: 24px;
		padding: 60px 40px;
		box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
		max-width: 500px;
		width: 100%;
		text-align: center;
	}

	.success-icon {
		width: 100px;
		height: 100px;
		background: linear-gradient(135deg, #10b981 0%, #059669 100%);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto 32px;
		color: white;
		box-shadow: 0 15px 30px -10px rgba(16, 185, 129, 0.4);
	}

	.success-card h1 {
		margin: 0 0 16px;
		font-size: 1.875rem;
		font-weight: 800;
		color: #1e293b;
		letter-spacing: -0.02em;
	}

	.success-card p {
		margin: 0 0 40px;
		color: #64748b;
		font-size: 1.1rem;
		line-height: 1.6;
	}

/* invitation-expired.php */
.invitation-expired-page {
	min-height: calc(100vh - 200px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.expired-card {
	background: white;
	border-radius: 20px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
	max-width: 520px;
	width: 100%;
	padding: 50px 40px;
	text-align: center;
}

.expired-icon {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	color: white;
}

.expired-card h1 {
	margin: 0 0 16px;
	font-size: 1.5rem;
	font-weight: 700;
	color: #1e293b;
}

.expired-card > p {
	margin: 0 0 32px;
	color: #64748b;
	font-size: 1rem;
	line-height: 1.6;
}

.expired-actions {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 32px;
}

.action-box {
	background: #f8fafc;
	border-radius: 12px;
	padding: 20px;
	text-align: left;
}

.action-box h3 {
	margin: 0 0 8px;
	font-size: 0.9375rem;
	font-weight: 600;
	color: #334155;
}

.action-box p {
	margin: 0;
	font-size: 0.875rem;
	color: #64748b;
	line-height: 1.5;
}

.action-box .btn-primary {
	margin-top: 12px;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	background: linear-gradient(135deg, var(--site-primary-color) 0%, #0284c7 100%);
	color: white;
	border: none;
	border-radius: 10px;
	font-size: 0.9375rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	text-decoration: none;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
}

.home-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #64748b;
	font-size: 0.9375rem;
	text-decoration: none;
	transition: color 0.2s;
}

.home-link:hover {
	color: var(--site-primary-color);
}

/* pro-access-request.php */
/* Page wrapper */
.pro-request-page {
	background: #fff;
	min-height: 100vh;
}

/* Hero */
.pro-request-hero {
	background: linear-gradient(135deg, var(--site-primary-color) 0%, var(--color-primary-dark) 100%);
	padding: 4rem 0 3rem;
}

.pro-request-hero-inner {
	max-width: 680px;
	margin: 0 auto;
	padding: 0 2rem;
}

.pro-request-breadcrumb {
	font-size: 0.8rem;
	color: #94a3b8;
	margin-bottom: 1.25rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.pro-request-breadcrumb a {
	color: #94a3b8;
	text-decoration: none;
}

.pro-request-breadcrumb a:hover {
	color: #cbd5e1;
}

.pro-request-hero h1 {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.625rem;
	letter-spacing: -0.02em;
}

.pro-request-hero p {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
	line-height: 1.6;
}

/* Body */
.pro-request-body {
	max-width: 680px;
	margin: 0 auto;
	padding: 3rem 2rem 5rem;
}

/* Error */
.pro-request-error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #b91c1c;
	padding: 12px 16px;
	border-radius: 6px;
	margin-bottom: 2rem;
	font-size: 0.875rem;
}

/* Fieldset */
.pro-request-form .form-section {
	border-top: 1px solid #e2e8f0;
	padding-top: 1.5rem;
	margin-bottom: 2rem;
}

.pro-request-form .form-section-title {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #94a3b8;
	margin: 0;
}

/* Form groups */
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 1rem;
	margin-top: 1.25rem;
}

.pro-request-form *::before,
.pro-request-form *::after {
	display: none !important;
}

.pro-request-form .form-group {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: 1.25rem;
}

.form-row .form-group {
	margin-top: 0;
}

.pro-request-form label {
	font-size: 0.8rem;
	font-weight: 600;
	color: #374151;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.pro-request-form .required {
	color: #ef4444;
}

.pro-request-form input,
.pro-request-form select,
.pro-request-form textarea {
	padding: 9px 12px;
	border: 1px solid #d1d5db;
	border-radius: 5px;
	font-size: 0.925rem;
	color: #0f172a;
	background: #fff;
	transition: border-color 0.15s;
	width: 100%;
	box-sizing: border-box;
	font-family: inherit;
}

.pro-request-form input:focus,
.pro-request-form select:focus,
.pro-request-form textarea:focus {
	outline: none;
	border-color: var(--site-primary-color);
}

.pro-request-form input::placeholder,
.pro-request-form textarea::placeholder {
	color: #9ca3af;
}

.pro-request-form textarea {
	resize: vertical;
	min-height: 100px;
}

/* Submit */
.pro-request-form .pro-submit-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	font-size: 0.9rem;
	font-weight: 600;
	background: var(--site-primary-color);
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background 0.15s;
	margin-top: 2rem;
	letter-spacing: 0.02em;
}

.pro-request-form .pro-submit-btn:hover {
	background: var(--color-primary-dark);
}

/* Login link */
.form-footer {
	text-align: center;
	margin-top: 1.5rem;
	font-size: 0.875rem;
	color: #64748b;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-top: 1px solid #f1f5f9;
	padding-top: 1.5rem;
}

.form-footer a {
	color: var(--site-primary-color);
	font-weight: 600;
	text-decoration: none;
}

.form-footer a:hover {
	text-decoration: underline;
}

/* Success */
.pro-request-success {
	padding: 2rem 0;
}

.pro-success-label {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #10b981;
	margin: 0 0 0.75rem;
}

.pro-request-success h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
}

.pro-request-success p {
	color: #475569;
	line-height: 1.7;
	font-size: 0.95rem;
	margin: 0 0 1.5rem;
}

.pro-btn-back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.875rem;
	color: #64748b;
	text-decoration: none;
	transition: color 0.15s;
}

.pro-btn-back:hover {
	color: var(--site-primary-color);
}

@media (max-width: 600px) {
	.pro-request-hero {
		padding: 2.5rem 0 2rem;
	}
	.pro-request-hero h1 {
		font-size: 1.6rem;
	}
	.pro-request-body {
		padding: 2rem 1.25rem 3rem;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
}
