  :root {
            --brand: #D4AF37;
            --brand-dark: #D4AF37;
            --brand-light: #F1D97A;
            --ink: #1c1f37;
        }

        * {
            box-sizing: border-box;
        }

        html,
        body {
            height: 100%;
            width: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: "Outfit", sans-serif;
            margin: 0;
        }

        /* ===== Background layer =====
           Replace the url() below with your own background image path
           e.g. url('{{ asset('assets/images/auth-bg.jpg') }}') */
        .auth-page {
            min-height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            position: relative;
            overflow: hidden;
            background-color: var(--ink);
            background-image:
                linear-gradient(135deg, rgba(28, 31, 55, 0.92) 0%, rgba(212, 175, 55, 0.85) 100%),
                url('/assets/images/login/background_login.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* soft decorative blobs so the page isn't flat before you add the real bg image */
        .auth-page::before,
        .auth-page::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.35;
            z-index: 0;
        }

        .auth-page::before {
            width: 320px;
            height: 320px;
            background: var(--brand-light);
            top: -60px;
            left: -60px;
        }

        .auth-page::after {
            width: 380px;
            height: 380px;
            background: var(--brand);
            bottom: -80px;
            right: -80px;
        }

        .auth-wrapper {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 420px;
        }

        .auth-card {
            background: #ffffff;
            border: none;
            border-radius: 18px;
            box-shadow: 0 20px 50px rgba(28, 31, 55, 0.35);
            padding: 2.25rem 2rem 2rem;
        }

        /* ===== Center icon / logo circle ===== */
        .auth-icon-wrap {
            width: 84px;
            height: 84px;
            margin: -70px auto 18px;
            border-radius: 50%;
            background: black;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(152, 73, 142, 0.45);
            border: 4px solid #ffffff;

        }

        /* Swap this <i> for your own <img> later, e.g.
           <img src="{{ asset('/assets/img/kubic/logo-remover.png') }}" alt="logo" style="width:44px;height:44px;object-fit:contain;"> */
        .auth-icon-wrap i {
            font-size: 34px;
            color: #ffffff;
        }

        .auth-title {
            text-align: center;
            font-weight: 600;
            color: var(--ink);
            font-size: 1.4rem;
            margin-bottom: 2px;
        }

        .auth-subtitle {
            text-align: center;
            color: #8a8ea3;
            font-size: 0.9rem;
            margin-bottom: 1.75rem;
        }

        .form-label {
            font-weight: 500;
            color: var(--ink);
            font-size: 0.9rem;
        }

        .form-control {
            border-radius: 10px;
            border: 1px solid #e6e5ee;
            padding: 0.65rem 0.9rem;
            font-size: 0.92rem;
        }

        .form-control:focus {
            border-color: var(--brand);
            box-shadow: 0 0 0 0.2rem rgba(152, 73, 142, 0.15);
        }

        .input-group .input-group-text {
            border-radius: 0 10px 10px 0;
            background: #fff;
            border: 1px solid #e6e5ee;
            border-left: none;
            color: #8a8ea3;
        }

        .input-group .form-control {
            border-radius: 10px 0 0 10px;
        }

        .form-check-input:checked {
            background-color: var(--brand);
            border-color: var(--brand);
        }

        .btn-brand {
            background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
            border: none;
            border-radius: 10px;
            color: #fff;
            font-weight: 600;
            padding: 0.7rem 1rem;
            letter-spacing: 0.2px;
            transition: transform 0.15s ease, box-shadow 0.15s ease;
        }

        .btn-brand:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 20px rgba(152, 73, 142, 0.35);
            color: #fff;
        }

        .btn-brand:disabled {
            opacity: 0.75;
        }

        .forgot-link {
            color: var(--brand);
            text-decoration: underline;
            font-weight: 600;
        }

        .forgot-link:hover {
            color: var(--brand-dark);
        }

        .auth-footer {
            text-align: center;
            margin-top: 1.5rem;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.75);
            position: relative;
            z-index: 1;
        }

        .auth-footer a {
            color: #fff;
            font-weight: 600;
            text-decoration: none;
        }