.gradient-bg {
	background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}
.side-borders {
	background-color: #f9fafb;
}
.form-control:focus {
	box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}
.success-message {
	animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(-10px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Styles responsive reprenant ceux de index.html */
@media (max-width: 768px) {
	.flex-mobile-col {
		flex-direction: column;
	}

	.nav-mobile {
		display: flex;
		justify-content: center;
		margin: 1rem 0;
	}

	.w-mobile-full {
		width: 100%;
	}

	.footer-columns {
		flex-direction: column;
		align-items: center;
	}

	.footer-column {
		margin-bottom: 2rem;
		padding-left: 0;
		padding-right: 0;
	}
}


/* Style pour limiter la largeur des vidéos YouTube */
.video-container {
    max-width: 480px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 5px solid white;
    background-color: rgb(106 63 234)
}

/* Fix SEULEMENT pour les conteneurs d'images - pas les autres containers */
.bg-gray-50.p-6.rounded-2xl.shadow-lg.mt-8.md\:mt-0.flex.justify-center.items-center {
    width: fit-content;
    margin: 0 auto;
}

/* Fix pour les conteneurs d'étapes avec bg-gray-100 */
.bg-gray-100.rounded-lg.flex.items-center.justify-center.border-2.border-gray-200.overflow-hidden {
    width: fit-content;
    margin: 0 auto;
}