/* CSS pour la page de connexion utilisateur */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.gradient-sipd {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

.gradient-bcssi {
    background: linear-gradient(135deg, #846358, #a18072);
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-in;
}

.animate-slide-up {
    animation: slideUp 0.4s ease-out;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Classes utilitaires Tailwind personnalisées */
.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.p-4 { padding: 1rem; }
.w-full { width: 100%; }
.max-w-md { max-width: 28rem; }
.text-center { text-align: center; }
.mb-8 { margin-bottom: 2rem; }
.w-20 { width: 5rem; }
.h-20 { height: 5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 1rem; }
.bg-gradient-to-br { background: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-yellow-400 { --tw-gradient-from: #fbbf24; }
.to-yellow-600 { --tw-gradient-to: #d97706; }
.rounded-full { border-radius: 9999px; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.font-bold { font-weight: 700; }
.text-white { color: #fff; }
.mb-2 { margin-bottom: 0.5rem; }
.rounded-2xl { border-radius: 1rem; }
.p-8 { padding: 2rem; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.mb-6 { margin-bottom: 1.5rem; }
.bg-red-50 { background-color: #fef2f2; }
.border-l-4 { border-left-width: 4px; }
.border-red-500 { border-color: #ef4444; }
.rounded-lg { border-radius: 0.5rem; }
.flex-shrink-0 { flex-shrink: 0; }
.h-5 { height: 1.25rem; }
.w-5 { width: 1.25rem; }
.text-red-400 { color: #f87171; }
.ml-3 { margin-left: 0.75rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-red-700 { color: #b91c1c; }
.font-medium { font-weight: 500; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }
.block { display: block; }
.font-semibold { font-weight: 600; }
.text-gray-700 { color: #374151; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.border-2 { border-width: 2px; }
.border-gray-200 { border-color: #e5e7eb; }
.rounded-xl { border-radius: 0.75rem; }
.focus\:outline-none:focus { outline: none; }
.focus\:border-blue-500:focus { border-color: #3b82f6; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--tw-ring-color); }
.focus\:ring-blue-200:focus { --tw-ring-color: #dbeafe; }
.transition-all { transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1); }
.duration-200 { transition-duration: 200ms; }
.text-gray-900 { color: #111827; }
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gap-4 { gap: 1rem; }
.relative { position: relative; }
.cursor-pointer { cursor: pointer; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; }
.peer { /* peer selector */ }
.p-4 { padding: 1rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.opacity-90 { opacity: 0.9; }
.peer-checked\:ring-4:checked ~ * { box-shadow: 0 0 0 4px var(--tw-ring-color); }
.peer-checked\:ring-blue-200:checked ~ * { --tw-ring-color: #dbeafe; }
.peer-checked\:ring-brown-200:checked ~ * { --tw-ring-color: #eaddd7; }
.peer-checked\:scale-105:checked ~ * { transform: scale(1.05); }
.hover\:scale-102:hover { transform: scale(1.02); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.bg-gradient-to-r { background: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-blue-600 { --tw-gradient-from: #2563eb; }
.to-blue-700 { --tw-gradient-to: #1d4ed8; }
.hover\:from-blue-700:hover { --tw-gradient-from: #1d4ed8; }
.hover\:to-blue-800:hover { --tw-gradient-to: #1e40af; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.transform { transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1); }
.hover\:scale-105:hover { transform: scale(1.05); }
.focus\:ring-4:focus { box-shadow: 0 0 0 4px var(--tw-ring-color); }
.mr-2 { margin-right: 0.5rem; }
.stroke-2 { stroke-width: 2; }
.mt-8 { margin-top: 2rem; }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.animate-spin { animation: spin 1s linear infinite; }
.-ml-1 { margin-left: -0.25rem; }
.mr-3 { margin-right: 0.75rem; }
.opacity-25 { opacity: 0.25; }
.opacity-75 { opacity: 0.75; }

@keyframes spin {
    to { transform: rotate(360deg); }
}