
        /* Animated Background */
        .cruise-bg-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: linear-gradient(180deg, #f8fafc 0%, #e0f2f1 50%, #b2dfdb 100%);
        }

        .cruise-bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(ellipse 80% 50% at 30% 20%, rgba(0, 183, 74, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse 70% 60% at 70% 80%, rgba(0, 102, 204, 0.1) 0%, transparent 50%);
        }

        /* Floating Elements */
        .floating-shapes {
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            opacity: 0.4;
        }

        .shape-ship {
            font-size: 60px;
            color: var(--digibro-blue);
            top: 15%;
            left: 8%;
            animation: floatShip 8s ease-in-out infinite;
        }

        .shape-anchor {
            font-size: 45px;
            color: var(--digibro-teal);
            bottom: 20%;
            right: 10%;
            animation: swing 6s ease-in-out infinite;
        }

        .shape-compass {
            font-size: 50px;
            color: var(--digibro-green);
            top: 60%;
            left: 5%;
            animation: rotate 20s linear infinite;
        }

        .shape-wave {
            width: 300px;
            height: 100px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2300bfa6' fill-opacity='0.15' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
            top: 40%;
            right: 5%;
            animation: floatY 10s ease-in-out infinite;
        }

        @keyframes floatShip {

            0%,
            100% {
                transform: translateY(0) rotate(-5deg);
            }

            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        @keyframes swing {

            0%,
            100% {
                transform: rotate(-10deg);
            }

            50% {
                transform: rotate(10deg);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes floatY {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-30px);
            }
        }

        /* Main Container */
        .auth-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }

        .auth-wrapper {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            max-width: 1200px;
            width: 100%;
            background: var(--bg-glass-strong);
            backdrop-filter: blur(20px);
            border-radius: 32px;
            overflow: hidden;
            box-shadow: var(--shadow-2xl);
            border: 1px solid var(--border-color);
        }

        /* Left Panel - Branding */
        .brand-panel {
            padding: 60px 50px;
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .brand-panel::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15), 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;
            }
        }

        .wave-decoration {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='rgba(255,255,255,0.1)' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
            opacity: 0.5;
        }

        .brand-content {
            position: relative;
            z-index: 1;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 40px;
        }

        .logo-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .logo-text h1 {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 900;
            color: white;
            margin: 0;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .logo-text p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
            margin: 5px 0 0 0;
        }

        .brand-hero {
            margin-bottom: 40px;
        }

        .brand-hero h2 {
            font-size: 42px;
            font-weight: 800;
            color: white;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }

        .brand-hero p {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .brand-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
        }

        .feature-item:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateX(5px);
        }

        .feature-icon {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
        }

        .feature-text {
            flex: 1;
        }

        .feature-text h4 {
            font-size: 14px;
            font-weight: 700;
            color: white;
            margin: 0 0 3px 0;
        }

        .feature-text p {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
        }

        .brand-stats {
            display: flex;
            justify-content: space-around;
            padding: 25px;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 1;
            margin-top: 1rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 28px;
            font-weight: 800;
            color: white;
            display: block;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
        }

        /* Right Panel - Form */
        .form-panel {
            padding: 60px 50px;
            background: white;
        }

        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-tabs {
            display: flex;
            gap: 8px;
            background: var(--bg-section);
            padding: 6px;
            border-radius: 16px;
            margin-bottom: 30px;
        }

        .tab-btn {
            flex: 1;
            padding: 14px 20px;
            background: transparent;
            border: none;
            border-radius: 12px;
            font-family: var(--font-heading);
            font-size: 15px;
            font-weight: 700;
            color: var(--text-muted);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .tab-btn.active {
            background: var(--gradient-primary);
            color: white;
            box-shadow: var(--shadow-green);
        }

        .form-header h2 {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 800;
            color: var(--text-heading);
            margin-bottom: 12px;
        }

        .form-header p {
            font-size: 15px;
            color: var(--text-muted);
        }

        .form-content {
            display: none;
        }

        .form-content.active {
            display: block;
            animation: fadeSlide 0.5s ease;
        }

        @keyframes fadeSlide {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .success-message {
            display: none;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            background: rgba(0, 183, 74, 0.1);
            border: 2px solid var(--digibro-green);
            border-radius: 14px;
            margin-bottom: 25px;
            color: var(--digibro-green);
            font-weight: 600;
        }

        .success-message.show {
            display: flex;
            animation: slideDown 0.5s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-group {
            margin-bottom: 22px;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-heading);
            margin-bottom: 10px;
        }

        .input-wrapper {
            position: relative;
        }

        .input-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--digibro-green);
            font-size: 18px;
        }

        .form-input {
            width: 100%;
            padding: 15px 20px 15px 50px;
            border: 2px solid var(--border-color);
            border-radius: 14px;
            font-family: var(--font-primary);
            font-size: 15px;
            font-weight: 500;
            color: var(--text-dark);
            transition: var(--transition);
            background: var(--bg-light);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--digibro-green);
            box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
        }

        .form-input::placeholder {
            color: var(--text-light);
        }

        .password-toggle {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            font-size: 18px;
            transition: var(--transition);
        }

        .password-toggle:hover {
            color: var(--digibro-green);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .checkbox-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .checkbox-wrapper input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: var(--digibro-green);
        }

        .checkbox-wrapper label {
            font-size: 14px;
            color: var(--text-medium);
            cursor: pointer;
        }

        .forgot-link {
            color: var(--digibro-green);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: var(--transition);
        }

        .forgot-link:hover {
            color: var(--digibro-green);
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 14px;
            color: white;
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow-green);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 25px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 50px rgba(0, 183, 74, 0.35);
        }

        .divider {
            display: flex;
            align-items: center;
            gap: 15px;
            margin: 30px 0;
        }

        .divider-line {
            flex: 1;
            height: 1px;
            background: var(--border-color);
        }

        .divider-text {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 600;
        }

        .social-login {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 30px;
        }

        .social-btn {
            padding: 14px;
            background: var(--bg-section);
            border: 2px solid var(--border-color);
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-heading);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .social-btn:hover {
            background: white;
            border-color: var(--digibro-green);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .social-btn i {
            font-size: 20px;
        }

        .google-btn i {
            color: #ea4335;
        }

        .facebook-btn i {
            color: #1877f2;
        }

        .form-footer {
            text-align: center;
            font-size: 15px;
            color: var(--text-medium);
        }

        .form-footer a {
            color: var(--digibro-green);
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
        }

        .form-footer a:hover {
            color: var(--digibro-green);
        }

        .terms-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 25px;
        }

        .terms-wrapper input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            cursor: pointer;
            accent-color: var(--digibro-green);
            flex-shrink: 0;
        }

        .terms-wrapper label {
            font-size: 14px;
            color: var(--text-medium);
            line-height: 1.6;
            cursor: pointer;
        }

        .terms-wrapper a {
            color: var(--digibro-freen);
            text-decoration: none;
            font-weight: 600;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .auth-wrapper {
                grid-template-columns: 1fr;
            }

            .brand-panel {
                padding: 50px 30px;
            }

            .brand-features {
                grid-template-columns: 1fr;
            }

            .form-panel {
                padding: 50px 30px;
            }
        }

        @media (max-width: 768px) {
            .brand-panel {
                padding: 40px 25px;
            }

            .brand-hero h2 {
                font-size: 32px;
            }

            .form-panel {
                padding: 40px 25px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .social-login {
                grid-template-columns: 1fr;
            }

            .form-options {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
        }

        @media (max-width: 576px) {
            .auth-container {
                padding: 20px 10px;
            }

            .auth-wrapper {
                border-radius: 24px;
            }
            .brand-panel {
                padding: 30px 20px;
                order: 2;
            }

            .logo-icon {
                width: 55px;
                height: 55px;
                font-size: 28px;
            }

            .logo-text h1 {
                font-size: 26px;
            }

            .brand-hero h2 {
                font-size: 28px;
            }

            .form-panel {
                padding: 30px 20px;
            }

            .form-header h2 {
                font-size: 26px;
            }
        }
   