/* sensi_bility/static/src/css/register.css - SpaceX-Inspired Registration Wizard */

/* Hide Odoo header/navbar for registration page */
header, .navbar, .o_header, #top, .o_top_menu, .o_header_affixed, .o_main_navbar,
.navbar-light, .navbar-expand-lg, .o_colored_level, .o_cc, .d-none.d-lg-block,
.pt-3, .shadow-sm, .o_header_fixed {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Ensure full screen layout */
body {
    margin: 0 !important;
    padding: 0 !important;
}

/* SpaceX-inspired futuristic styling */
:root {
    --orange-primary: #EC5800;
    --orange-secondary: #EA580C;
    --purple-primary: #7C3AED;
    --purple-secondary: #6D28D9;
    --dark-bg: #0F0F0F;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* Main background - dark cosmic theme */
body {
    background: linear-gradient(135deg, #0F0F0F 0%, #1a1a2e 25%, #16213e 50%, #0F0F0F 75%, #1a1a2e 100%) !important;
    background-attachment: fixed !important;
    color: white !important;
}

/* Animated background elements */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes float-delayed {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(15px) rotate(-1deg); }
    66% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes slow-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes bounce-gentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-delayed { animation: float-delayed 8s ease-in-out infinite; }
.animate-slow-spin { animation: slow-spin 20s linear infinite; }
.animate-shimmer { animation: shimmer 2s ease-in-out infinite; }
.animate-bounce-gentle { animation: bounce-gentle 2s ease-in-out infinite; }

/* Main container styling */
.min-h-screen {
    min-height: 100vh;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.p-4 {
    padding: 1rem;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

/* Fixed background elements */
.fixed {
    position: fixed;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.overflow-hidden {
    overflow: hidden;
}

/* Gradient backgrounds */
.bg-gradient-to-br {
    background: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-slate-900 {
    --tw-gradient-from: #0f172a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(15, 23, 42, 0));
}

.via-purple-900 {
    --tw-gradient-stops: var(--tw-gradient-from), #581c87, var(--tw-gradient-to, rgba(88, 28, 135, 0));
}

.to-slate-900 {
    --tw-gradient-to: #0f172a;
}

/* Wizard container */
.bg-black\/20 {
    background-color: rgba(0, 0, 0, 0.2);
}

.backdrop-blur-2xl {
    backdrop-filter: blur(40px);
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.border {
    border-width: 1px;
}

.border-white\/10 {
    border-color: rgba(255, 255, 255, 0.1);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.overflow-hidden {
    overflow: hidden;
}

/* Progress indicator */
.bg-black\/20 {
    background-color: rgba(0, 0, 0, 0.2);
}

.backdrop-blur-xl {
    backdrop-filter: blur(24px);
}

.rounded-2xl {
    border-radius: 1rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.w-3 {
    width: 0.75rem;
}

.h-3 {
    height: 0.75rem;
}

.rounded-full {
    border-radius: 9999px;
}

.bg-orange-500 {
    background-color: #f97316;
}

.bg-white\/30 {
    background-color: rgba(255, 255, 255, 0.3);
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-500 {
    transition-duration: 500ms;
}

.ml-4 {
    margin-left: 1rem;
}

.text-white\/80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-medium {
    font-weight: 500;
}

/* Wizard steps */
.wizard-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: 0;
    transform: translateX(0);
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
}

.wizard-step.active {
    opacity: 1;
    z-index: 10;
    visibility: visible;
    pointer-events: auto;
}

.min-h-\[600px\] {
    min-height: 600px;
}

.flex-col {
    flex-direction: column;
}

.p-12 {
    padding: 3rem;
}

.text-center {
    text-align: center;
}

.text-white {
    color: white;
}

/* Welcome step */
.w-32 {
    width: 8rem;
}

.h-32 {
    height: 8rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-8 {
    margin-bottom: 2rem;
}

.bg-gradient-to-r {
    background: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-orange-500 {
    --tw-gradient-from: #f97316;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 115, 22, 0));
}

.to-purple-600 {
    --tw-gradient-to: #9333ea;
}

.rounded-full {
    border-radius: 9999px;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.animate-bounce-gentle {
    animation: bounce-gentle 2s ease-in-out infinite;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.font-bold {
    font-weight: 700;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.bg-gradient-to-r {
    background: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-orange-400 {
    --tw-gradient-from: #fb923c;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 146, 60, 0));
}

.via-orange-500 {
    --tw-gradient-stops: var(--tw-gradient-from), #f97316, var(--tw-gradient-to, rgba(249, 115, 22, 0));
}

.to-purple-500 {
    --tw-gradient-to: #a855f7;
}

.bg-clip-text {
    background-clip: text;
}

.text-transparent {
    color: transparent;
}

.mb-4 {
    margin-bottom: 1rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-white\/80 {
    color: rgba(255, 255, 255, 0.8);
}

.mb-8 {
    margin-bottom: 2rem;
}

.leading-relaxed {
    line-height: 1.625;
}

.flex-col {
    flex-direction: column;
}

.sm\:flex-row {
    flex-direction: row;
}

.gap-4 {
    gap: 1rem;
}

.justify-center {
    justify-content: center;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.bg-gradient-to-r {
    background: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-orange-500 {
    --tw-gradient-from: #f97316;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 115, 22, 0));
}

.to-red-500 {
    --tw-gradient-to: #ef4444;
}

.hover\:from-orange-600:hover {
    --tw-gradient-from: #ea580c;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 88, 12, 0));
}

.hover\:to-red-600:hover {
    --tw-gradient-to: #dc2626;
}

.text-white {
    color: white;
}

.font-bold {
    font-weight: 700;
}

.rounded-2xl {
    border-radius: 1rem;
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hover\:shadow-2xl:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.transform {
    transform: var(--tw-transform);
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.bg-white\/10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.hover\:bg-white\/20:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.text-white {
    color: white;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

/* Role selection cards */
.role-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.role-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(236, 88, 0, 0.2);
}

.p-6 {
    padding: 1.5rem;
}

.bg-white\/5 {
    background-color: rgba(255, 255, 255, 0.05);
}

.hover\:bg-white\/10:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.border {
    border-width: 1px;
}

.border-white\/10 {
    border-color: rgba(255, 255, 255, 0.1);
}

.hover\:border-orange-500\/50:hover {
    border-color: rgba(236, 88, 0, 0.5);
}

.rounded-2xl {
    border-radius: 1rem;
}

.text-left {
    text-align: left;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:shadow-2xl:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

/* Form inputs */
.w-full {
    width: 100%;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.bg-white\/10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.border-2 {
    border-width: 2px;
}

.border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}

.rounded-2xl {
    border-radius: 1rem;
}

.text-white {
    color: white;
}

.placeholder-white\/50::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.focus\:border-orange-500:focus {
    border-color: #f97316;
}

.focus\:bg-white\/15:focus {
    background-color: rgba(255, 255, 255, 0.15);
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

/* Camera section */
.relative {
    position: relative;
}

.bg-black\/50 {
    background-color: rgba(0, 0, 0, 0.5);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.aspect-\[4\/3\] {
    aspect-ratio: 4 / 3;
}

.max-h-\[400px\] {
    max-height: 400px;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.border-4 {
    border-width: 4px;
}

.border-dashed {
    border-style: dashed;
}

.border-orange-500\/50 {
    border-color: rgba(249, 115, 22, 0.5);
}

.pointer-events-none {
    pointer-events: none;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

/* Buttons */
.flex-1 {
    flex: 1 1 0%;
}

.bg-gradient-to-r {
    background: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-orange-500 {
    --tw-gradient-from: #f97316;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 115, 22, 0));
}

.to-red-500 {
    --tw-gradient-to: #ef4444;
}

.hover\:from-orange-600:hover {
    --tw-gradient-from: #ea580c;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 88, 12, 0));
}

.hover\:to-red-600:hover {
    --tw-gradient-to: #dc2626;
}

.text-white {
    color: white;
}

.font-bold {
    font-weight: 700;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.transform {
    transform: var(--tw-transform);
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.from-purple-500 {
    --tw-gradient-from: #a855f7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0));
}

.to-pink-500 {
    --tw-gradient-to: #ec4899;
}

.hover\:from-purple-600:hover {
    --tw-gradient-from: #9333ea;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 51, 234, 0));
}

.hover\:to-pink-600:hover {
    --tw-gradient-to: #db2777;
}

.w-full {
    width: 100%;
}

.bg-gradient-to-r {
    background: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-green-500 {
    --tw-gradient-from: #10b981;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0));
}

.to-emerald-500 {
    --tw-gradient-to: #059669;
}

.hover\:from-green-600:hover {
    --tw-gradient-from: #059669;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0));
}

.hover\:to-emerald-600:hover {
    --tw-gradient-to: #047857;
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.hidden {
    display: none;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.inline-block {
    display: inline-block;
}

.max-h-64 {
    max-height: 16rem;
}

.transform {
    transform: var(--tw-transform);
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.-top-2 {
    top: -0.5rem;
}

.-right-2 {
    right: -0.5rem;
}

.w-8 {
    width: 2rem;
}

.h-8 {
    height: 2rem;
}

.bg-green-500 {
    background-color: #10b981;
}

.rounded-full {
    border-radius: 9999px;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.text-white {
    color: white;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-bold {
    font-weight: 700;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.animate-bounce {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0,-4px,0);
    }
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.border {
    border-width: 1px;
}

.border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

/* Final submit button */
.bg-gradient-to-r {
    background: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-orange-500 {
    --tw-gradient-from: #f97316;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 115, 22, 0));
}

.via-orange-600 {
    --tw-gradient-stops: var(--tw-gradient-from), #ea580c, var(--tw-gradient-to, rgba(234, 88, 12, 0));
}

.to-red-500 {
    --tw-gradient-to: #ef4444;
}

.hover\:from-orange-600:hover {
    --tw-gradient-from: #ea580c;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 88, 12, 0));
}

.hover\:via-orange-700:hover {
    --tw-gradient-stops: var(--tw-gradient-from), #c2410c, var(--tw-gradient-to, rgba(194, 65, 12, 0));
}

.hover\:to-red-600:hover {
    --tw-gradient-to: #dc2626;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.z-10 {
    z-index: 10;
}

.gap-3 {
    gap: 0.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.animate-shimmer {
    animation: shimmer 2s ease-in-out infinite;
}

.active\:scale-95:active {
    transform: scale(0.95);
}

.pt-4 {
    padding-top: 1rem;
}

.text-center {
    text-align: center;
}

.text-white\/50 {
    color: rgba(255, 255, 255, 0.5);
}

/* Bootstrap Grid Classes */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.g-4 {
    gap: 1.5rem;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* Bootstrap Utility Classes */
.w-100 {
    width: 100% !important;
}

.d-flex {
    display: flex !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.gap-3 {
    gap: 0.75rem !important;
}

.w-12 {
    width: 3rem;
}

.h-12 {
    height: 3rem;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
}

.font-bold {
    font-weight: 700 !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.text-white {
    color: white !important;
}

.text-white\/70 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.text-sm {
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
}

.leading-relaxed {
    line-height: 1.625 !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .wizard-step {
        padding: 2rem 1rem;
    }

    .role-card {
        padding: 1rem;
    }

    input {
        padding: 1rem;
        font-size: 16px;
    }

    #video {
        max-height: 300px;
    }
}

/* Animated background elements */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes float-delayed {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(15px) rotate(-1deg); }
    66% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes slow-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes bounce-gentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-delayed { animation: float-delayed 8s ease-in-out infinite; }
.animate-slow-spin { animation: slow-spin 20s linear infinite; }
.animate-shimmer { animation: shimmer 2s ease-in-out infinite; }
.animate-bounce-gentle { animation: bounce-gentle 2s ease-in-out infinite; }

/* Wizard step transitions */
.wizard-step {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
    opacity: 1;
}

/* Role cards */
.role-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.role-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(236, 88, 0, 0.2);
}

/* Selected role styles */
.ring-2 {
    box-shadow: 0 0 0 2px currentColor;
}

.ring-orange-500 {
    --tw-ring-color: #f97316;
    box-shadow: 0 0 0 2px var(--tw-ring-color);
}

.bg-orange-500\/20 {
    background-color: rgba(249, 115, 22, 0.2);
}

/* Input styling */
input:focus {
    transform: translateY(-2px);
    box-shadow: 0 0 0 3px rgba(236, 88, 0, 0.2), 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Button animations */
button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(236, 88, 0, 0.3);
}

button:active {
    transform: translateY(0);
}

/* Progress dots */
#step1, #step2, #step3, #step4, #step5 {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Camera section */
#video {
    filter: brightness(1.1) contrast(1.05) saturate(1.1);
    border-radius: 24px;
    transition: opacity 0.5s ease;
}

#captureBtn {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6);
        transform: scale(1.02);
    }
}

#previewImg {
    filter: brightness(1.05) contrast(1.02) saturate(1.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#previewImg:hover {
    transform: scale(1.05) rotate(1deg);
}

/* Notification animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Loading spinner */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Glass morphism effects */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--orange-primary), var(--purple-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pulsing elements */
@keyframes pulse-subtle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.animate-pulse-subtle {
    animation: pulse-subtle 2s ease-in-out infinite;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .wizard-step {
        padding: 2rem 1rem;
    }

    .role-card {
        padding: 1rem;
    }

    input {
        padding: 1rem;
        font-size: 16px; /* Prevent zoom on iOS */
    }

    #video {
        max-height: 300px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --glass-bg: rgba(255, 255, 255, 0.1);
        --glass-border: rgba(255, 255, 255, 0.3);
    }
}

/* Focus indicators */
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--orange-primary);
    outline-offset: 2px;
}

.role-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.role-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 88, 0, 0.15);
    border-color: #EC5800;
}

.role-btn.active {
    border-color: #EC5800 !important;
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    color: #EC5800;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(236, 88, 0, 0.2);
}

input:focus {
    transform: scale(1.01);
    box-shadow: 0 0 0 3px rgba(236, 88, 0, 0.1);
}

button:active {
    transform: scale(0.98);
}

/* Webcam enhancements */
#video {
    filter: brightness(1.1) contrast(1.05);
    border-radius: 24px;
}

#captureBtn {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    animation: pulse 2s infinite;
}

#captureBtn:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

#previewImg {
    filter: brightness(1.05) contrast(1.02);
    transition: transform 0.3s ease;
}

#previewImg:hover {
    transform: scale(1.02);
}

/* Loading animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Success feedback */
.form-success {
    animation: successBounce 0.6s ease-out;
}

@keyframes successBounce {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(20px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-5px);
    }
    70% {
        transform: scale(0.9) translateY(2px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
