        html, body {
            height: 100vh;
            width: 100vw;
            overflow: hidden;
            margin: 0;
            padding: 0;
            font-family: 'Unbounded', cursive;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scrollbar-width: none;
        }
      /* Break out of Filament's container constraints */
#auth-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999;
    background-color: white; /* Or your preferred fallback */
    overflow: hidden;
}

/* Ensure the container inside takes up the full fixed area */

.slick-slide.slick-current.slick-active.slick-center {
    padding-left: 20px;
}
        .mycontainer {
            width: 100%;
            height: 100vh;
            background-image: url(/login/bg.webp);
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column !important;
            justify-content: space-between;
            padding-bottom: 50px;
            flex-wrap: nowrap;
        }

        .myimg {
            width: 96vw;
            margin: 2vw;
        }

        .firstrow {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .secondrow {
            display: flex;
            justify-content: end;
        }

        @font-face {
            font-family: 'titi-bold';
            src: url('/login/Fonts/TitilliumWeb-Bold.ttf');
            font-weight: 900;
        }

        @font-face {
            font-family: 'titi-regular';
            src: url('/login/Fonts/TitilliumWeb-Regular.ttf');
            font-weight: 400;
        }

        @font-face {
            font-family: 'unb';
            src: url('/login/Fonts/Unbounded-VariableFont_wght.ttf');
            font-weight: 400;
        }

        @font-face {
            font-family: 'goth';
            src: url('/login/ Fonts/Gotham-Book.otf');
            font-weight: 400;
        }


        .text-1 {
            font-size: 1.7vw;
            font-weight: 900;
            font-family: "unb";
            margin-right: 9px;
            margin-top: -4px;
            color: #413976;
        }

        .thirdrow {
            display: flex;
            justify-content: space-between;
            padding: 0 5vw;
        }

        .thirdrow>div {
            width: 44%;
        }

        .login-container {
            color: var(--navy);
            padding-top: 80px;
            padding-left: 5px;
        }

        h1 {
            font-size: 3rem;
            letter-spacing: 1.5px;
            font-weight: 900;
            font-family: "unb";
            letter-spacing: -1.5px;
            margin-bottom: 10px;
        }

        .description {
            font-size: 1.3rem;
            line-height: 1.3;
            font-weight: 100;
            margin-bottom: 10px;
            max-width: 90%;
        }

        .login-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        /* Glassmorphism Input Fields */
        input {
            width: 100%;
            height: 65px;
            background: var(--white-glass);
            border: 2px solid rgba(255, 255, 255, 0.6);
            border-radius: 12px;
            padding: 0 20px;
            font-size: 1.2rem;
            outline: none;
            transition: background 0.3s ease;

        }

        input::placeholder {
            color: rgba(255, 255, 255, 0.6);
            font-size: 18px;
            font-family: 'titi-regular';
            font-weight: thin;
        }

        input:focus {
            background: rgba(255, 255, 255, 0.133);
        }

        :root {
            --navy: #3b3b71;
            --peach: #ffb199;
            --light-blue: #cbdced;
            --white-glass: rgba(255, 255, 255, 0.084);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Button Styling */
        button {
            width: 150px;
            height: 55px;
            background-color: var(--navy);
            color: var(--peach);
            border: none;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            margin-top: 10px;
            transition: transform 0.1s ease, opacity 0.2s ease;
        }

        button:hover {
            opacity: 0.9;
        }

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

        /* Footer text */
        .contact-footer {
            margin-top: 60px;
            font-size: 1rem;
            font-weight: 100;
            line-height: 1.4;
        }

        strong {
            font-weight: 900;
            font-family: "unb";
        }

        /* Container to keep prefix and slider on the same line */
        .hero-text {
            display: flex;
            align-items: center;
            font-family: sans-serif;
            /* Use your brand font here */
            font-size: 48px;
            font-weight: bold;
        }

        .prefix {
            color: #ff8a8a;
            /* Pinkish color from your image */
            margin-right: 15px;
            font-family: 'unb';
            font-size: 30px;
            white-space: nowrap;
            text-transform: uppercase;
        }

        /* The container needs enough height to show 3 rows */
        .slider {
            height: 300px;
            padding-top: 60px;
            overflow: hidden;
            width: 800px !important;
            padding-left: 50px;
            /* 3 times your line-height (60px * 3) */
        }

        /* Default state: All items are faded and smaller */
        .slider .slick-slide {
            opacity: 0.3;
            transition: opacity 0.3s ease, transform 0.3s ease;
            transform: scale(0.9);
            outline: none;
            line-height: 60px;
            height: 60px;
            text-align: left;
            color: #3b3b6d;
        }

        .slick-list {
            overflow: visible;
        }

        /* Active state: The one in the middle is bright and bold */
        .slider .slick-center {
            opacity: 1;
            transform: scale(1.1);
            /* Optional: makes the active word pop slightly */
            color: #3b3b6d;
            /* Dark navy from your image */
        }

        @keyframes float {
            0% {
                transform: translatey(0px);
            }

            50% {
                transform: translatey(-20px);
            }

            100% {
                transform: translatey(0px);
            }
        }

        .floating-img:nth-child(2) {
            animation: float 5s ease-in-out infinite;
            z-index: -20;
        }

        .floating-img:nth-child(3) {
            z-index: -20;
        }

        .floating-img:nth-child(4) {}

        .floating-img:nth-child(5) {
            animation: float 4s ease-in-out infinite;
        }

        .floating-img:nth-child(6) {
            animation: float 6s ease-in-out infinite;
        }

        .floating-img:nth-child(7) {}

        .floating-img:nth-child(8) {}

        .vertical-slider {
            height: 300px;
            /* Adjust to fit your 5 slides */
            overflow: hidden;

            /* The Magic: Smooth fade at top and bottom */
            -webkit-mask-image: linear-gradient(to bottom,
                    transparent 0%,
                    black 20%,
                    black 80%,
                    transparent 100%);
            mask-image: linear-gradient(to bottom,
                    transparent 0%,
                    black 20%,
                    black 80%,
                    transparent 100%);
        }

        /* Base style for all slides */
        .vertical-slider .slick-slide {
            opacity: 0.3;
            /* The "resting" opacity */
            transition: opacity 0.3s ease;
            font-size: 50px;
            line-height: 60px;
            font-family: 'unb';
        }

        /* Highlight only the center one */
        .vertical-slider .slick-center {
            opacity: 1 !important;
        }

        /* Glitch header */
        .glitch-container {
            position: relative;
            width: 98vw;
            height: 18vw;
            clip-path: inset(0% 100% 0% 0%);
            padding-top: 1vw;
        }

        .base-name,
        .glitch-layer {
            position: absolute;
            inset: 0;
            background-image: url('/login/name.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .glitch-red {
            filter: saturate(2) hue-rotate(-15deg);
            opacity: 0;
            animation: mini-glitch-1 2s infinite;
        }

        .glitch-cyan {
            filter: saturate(2) hue-rotate(150deg);
            opacity: 0;
            animation: mini-glitch-2 3s infinite;
        }

        @keyframes mini-glitch-1 {

            0%,
            90%,
            100% {
                opacity: 0;
                transform: translate(0);
            }

            92% {
                opacity: .8;
                transform: translate(-8px, 3px);
            }

            94% {
                opacity: .8;
                transform: translate(8px, -3px);
            }
        }

        @keyframes mini-glitch-2 {

            0%,
            94%,
            100% {
                opacity: 0;
                transform: translate(0);
            }

            96% {
                opacity: .8;
                transform: translate(10px, -2px);
            }

            98% {
                opacity: .8;
                transform: translate(-10px, 2px);
            }
        }

        /* Ensure each slide is the same height as the container */