
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-orange: #FF5F15;
            --secondary-orange: #FFA802;
            --gradient-primary: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
            --bg-dark: #0d163e;
            --bg-darker: #0a0f2c;
            --text-light: #ffffff;
            --shadow-primary: 0 20px 40px rgba(255, 95, 21, 0.2);
            --shadow-hover: 0 25px 50px rgba(255, 95, 21, 0.3);
            --border-orange: rgba(255, 95, 21, 0.3);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--bg-dark);
            color: var(--text-light);
            overflow: auto;
            /* min-height: 100vh; */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* Animated Video Background */
        .video-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            /* overflow: hidden; */
        }

        .video-background video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(13, 22, 62, 0.92) 0%, rgba(10, 15, 44, 0.95) 100%);
            z-index: -1;
        }

        /* Floating Wave Animation */
        .wave-container {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            z-index: -1;
            /* overflow: hidden; */
        }

        .wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 200%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.1), transparent);
            animation: wave 15s linear infinite;
        }

        .wave:nth-child(2) {
            animation: wave 20s linear infinite reverse;
            opacity: 0.5;
        }

        @keyframes wave {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* Main Container - Horizontal Split Design */
        .auth-wrapper {
            width: 100%;
            min-height: 100vh;
            /* Changed from height: 100vh */
            display: flex;
        }


        .visual-panel,
        .form-panel {
            flex-shrink: 0;
            /* Prevent shrinking */
            display: flex;
            flex-direction: column;
        }

        /* Left Panel - Visual Section */
        .visual-panel {
            flex: 1;
            background: linear-gradient(135deg, rgba(255, 95, 21, 0.15) 0%, rgba(255, 168, 2, 0.08) 100%);
            backdrop-filter: blur(15px);
            border-right: 3px solid var(--border-orange);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: clamp(20px, 5vw, 60px);
            position: relative;
            overflow: hidden;
            /* height: 100%; */
        }

        .visual-panel::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 95, 21, 0.2), transparent);
            border-radius: 50%;
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.3;
            }

            50% {
                transform: scale(1.2);
                opacity: 0.5;
            }
        }

        /* Brand Section */
        .cruise-brand {
            position: relative;
            z-index: 2;
        }

        .brand-logo-container {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 35px;
        }

        .logo-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 42px;
            color: white;
            box-shadow: 0 15px 40px rgba(255, 95, 21, 0.4);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .brand-name h1 {
            font-size: 38px;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0;
        }

        .brand-name p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            margin: 5px 0 0 0;
        }

        .hero-content h2 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .highlight-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 18px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 25px;
        }

        /* Cruise Features */
        .cruise-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .feature-box {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 2px solid var(--border-orange);
            border-radius: 18px;
            padding: 25px;
            transition: var(--transition);
        }

        .feature-box:hover {
            background: rgba(255, 95, 21, 0.12);
            border-color: var(--primary-orange);
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(255, 95, 21, 0.3);
        }

        .feature-icon-box {
            width: 50px;
            height: 50px;
            background: rgba(255, 95, 21, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }

        .feature-icon-box i {
            font-size: 24px;
            color: var(--secondary-orange);
        }

        .feature-box h4 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .feature-box p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        /* Stats Section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .stat-card {
            background: rgba(255, 95, 21, 0.1);
            border: 2px solid var(--border-orange);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
        }

        .stat-number {
            font-size: 32px;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Right Panel - Form Section */
        .form-panel {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 50px;
            background: linear-gradient(135deg, rgba(13, 22, 62, 0.863) 0%, rgba(26, 31, 58, 0.860) 100%);
            position: relative;
            min-height: fit-content;
        }

        .form-container {
            width: 100%;
            max-width: 480px;
            position: relative;
            z-index: 2;
        }

        /* Tab Switcher */
        .auth-switcher {
            display: flex;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid var(--border-orange);
            border-radius: 15px;
            padding: 6px;
            margin-bottom: 40px;
        }

        .switcher-btn {
            flex: 1;
            padding: 14px 25px;
            background: transparent;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 700;
            font-size: 16px;
            border-radius: 10px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .switcher-btn.active {
            background: var(--gradient-primary);
            color: white;
            box-shadow: 0 8px 25px rgba(255, 95, 21, 0.4);
        }

        /* Form Content */
        .form-content {
            display: none;
        }

        .form-content.active {
            display: block;
            animation: fadeSlideIn 0.6s ease;
        }

        @keyframes fadeSlideIn {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .form-header {
            margin-bottom: 35px;
        }

        .form-header h2 {
            font-size: 34px;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .form-header p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Form Groups */
        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .input-group {
            position: relative;
        }

        .input-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--secondary-orange);
            font-size: 18px;
            z-index: 1;
        }

        .form-input {
            width: 100%;
            padding: 16px 20px 16px 52px;
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid var(--border-orange);
            border-radius: 12px;
            color: white;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--primary-orange);
            box-shadow: 0 0 25px rgba(255, 95, 21, 0.3);
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .password-toggle-btn {
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            font-size: 18px;
            transition: color 0.3s ease;
            z-index: 1;
        }

        .password-toggle-btn:hover {
            color: var(--secondary-orange);
        }

        /* Two Column Layout */
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        /* Remember & Forgot */
        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .remember-me input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: var(--primary-orange);
        }

        .remember-me label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            cursor: pointer;
        }

        .forgot-link {
            color: var(--secondary-orange);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .forgot-link:hover {
            color: var(--primary-orange);
        }

        /* Submit Button */
        .submit-btn {
            width: 100%;
            padding: 18px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 12px;
            color: white;
            font-weight: 700;
            font-size: 17px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow-primary);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        /* Divider */
        .form-divider {
            display: flex;
            align-items: center;
            gap: 15px;
            margin: 30px 0;
        }

        .divider-line {
            flex: 1;
            height: 1px;
            background: rgba(255, 255, 255, 0.2);
        }

        .divider-text {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 600;
        }

        /* Social Buttons */
        .social-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 30px;
        }

        .social-btn {
            padding: 14px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid var(--border-orange);
            border-radius: 12px;
            color: white;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .social-btn:hover {
            background: rgba(255, 95, 21, 0.15);
            border-color: var(--primary-orange);
            transform: translateY(-2px);
        }

        .social-btn i {
            font-size: 20px;
        }

        /* Footer Text */
        .form-footer {
            text-align: center;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
        }

        .form-footer a {
            color: var(--secondary-orange);
            text-decoration: none;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .form-footer a:hover {
            color: var(--primary-orange);
        }

        /* Terms Checkbox */
        .terms-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 25px;
        }

        .terms-checkbox input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            cursor: pointer;
            accent-color: var(--primary-orange);
            flex-shrink: 0;
        }

        .terms-checkbox label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
            cursor: pointer;
        }

        .terms-checkbox a {
            color: var(--secondary-orange);
            text-decoration: none;
            font-weight: 600;
        }

        /* Success Message */
        .success-alert {
            display: none;
            background: rgba(76, 175, 80, 0.15);
            border: 2px solid rgba(76, 175, 80, 0.5);
            color: #4caf50;
            padding: 16px 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            font-size: 15px;
            font-weight: 600;
            align-items: center;
            gap: 12px;
        }

        .success-alert.show {
            display: flex;
            animation: slideDown 0.5s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .visual-panel {
                padding: 50px 40px;
            }

            .hero-content h2 {
                font-size: 40px;
            }

            .cruise-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 992px) {
            .auth-wrapper {
                flex-direction: column;
                height: auto;
            }

            .visual-panel {
                flex: none;
                border-right: none;
                border-bottom: 3px solid var(--border-orange);
                padding: 40px 30px;
            }

            .hero-content h2 {
                font-size: 36px;
            }

            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }

            .form-panel {
                padding: 40px 30px;
            }
        }

        @media (max-width: 768px) {
            body {
                overflow-y: auto;
            }

            .visual-panel {
                padding: 35px 25px;
                order: 2;
            }

            .brand-logo-container {
                gap: 15px;
                margin-bottom: 30px;
            }

            .logo-icon {
                width: 65px;
                height: 65px;
                font-size: 34px;
            }

            .brand-name h1 {
                font-size: 30px;
            }

            .hero-content h2 {
                font-size: 32px;
            }

            .hero-content p {
                font-size: 16px;
            }

            .cruise-features {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .form-panel {
                padding: 35px 25px;
            }

            .form-header h2 {
                font-size: 28px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .social-buttons {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .visual-panel {
                padding: 30px 20px;
            }

            .logo-icon {
                width: 55px;
                height: 55px;
                font-size: 28px;
            }

            .brand-name h1 {
                font-size: 26px;
            }

            .brand-name p {
                font-size: 14px;
            }

            .hero-content h2 {
                font-size: 28px;
            }

            .hero-content p {
                font-size: 15px;
            }

            .feature-box {
                padding: 20px;
            }

            .form-panel {
                padding: 30px 20px;
            }

            .form-header h2 {
                font-size: 26px;
            }

            .form-input {
                padding: 15px 18px 15px 48px;
                font-size: 14px;
            }

            .input-icon {
                left: 15px;
                font-size: 16px;
            }

            .submit-btn {
                padding: 16px;
                font-size: 16px;
            }

            .form-options {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
        }
