        @import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

        * {  
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Plus Jakarta Sans", sans-serif !important;

        }
        
        body {
            background: linear-gradient(135deg, #0b0700 0%, #1a140a 50%, #0b0700 100%);
            min-height: 100vh;
            margin: 0;
            padding: 0;
        }

        .auth-full-page {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .auth-wrapper {
            background: white;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            max-width: 1000px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 600px;
        }

        .auth-form {
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .auth-image {
            background: linear-gradient(135deg, #ffb400 0%, #e6a200 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .text-center h1 {
            color: #0b0700;
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 2rem;
        }

        .text-center p {
            color: #6c757d;
            font-size: 1rem;
            margin-bottom: 40px;
        }

        .form-control {
            border-radius: 12px;
            padding: 15px 20px;
            border: 2px solid #e9ecef;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #f8f9fa;
            width: 100%;
        }

        .form-control:focus {
            border-color: #ffb400;
            box-shadow: 0 0 0 0.2rem rgba(255, 180, 0, 0.2);
            background: white;
            outline: none;
        }

        .form-label {
            color: #0b0700;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 14px;
            display: block;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ffb400 0%, #e6a200 100%);
            border: none;
            border-radius: 12px;
            padding: 15px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            color: #0b0700;
            width: 100%;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #e6a200 0%, #cc9200 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 180, 0, 0.3);
            color: #0b0700;
        }

        .btn-outline-primary {
            border-color: #ffb400;
            color: #ffb400;
            border-radius: 0 12px 12px 0;
            border-left: none;
            background: transparent;
            padding: 15px 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-outline-primary:hover {
            background-color: #ffb400;
            border-color: #ffb400;
            color: #0b0700;
        }

        .input-group {
            display: flex;
            align-items: stretch;
        }

        .input-group .form-control {
            border-radius: 12px 0 0 12px;
            flex: 1;
        }

        .form-check {
            display: flex;
            align-items: center;
            margin: 15px 0;
        }

        .form-check-input {
            margin-right: 8px;
            accent-color: #ffb400;
        }

        .form-check-input:checked {
            background-color: #ffb400;
            border-color: #ffb400;
        }

        .form-check-label {
            color: #0b0700;
            font-size: 14px;
        }

        .text-primary {
            color: #ffb400 !important;
            text-decoration: none;
            font-weight: 500;
        }

        .text-primary:hover {
            color: #e6a200 !important;
            text-decoration: underline;
        }

        .login-visual {
            width: 280px;
            height: 280px;
        }

        .login-visual svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
        }

        .error-bg {
            background: #dc3545 !important;
            color: white !important;
            padding: 8px 16px !important;
            border-radius: 8px !important;
            font-size: 14px !important;
            margin-top: 8px !important;
            display: inline-block !important;
        }

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

        .mt-3 {
            margin-top: 1.5rem;
        }

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

        .d-grid {
            display: grid;
        }

        .gap-2 {
            gap: 0.5rem;
        }

        hr {
            border: 0;
            height: 1px;
            background: #e9ecef;
            margin: 1rem 0;
        }

        .row {
            display: flex;
            margin: 0 -0.5rem;
        }

        .col {
            flex: 1;
            padding: 0 0.5rem;
        }

        /* Mobile-first approach for better performance */
        .auth-wrapper {
            background: white;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            max-width: 1000px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr;
            min-height: 600px;
        }

        /* Desktop styles */
        @media (min-width: 993px) {
            .auth-wrapper {
                grid-template-columns: 1fr 1fr;
            }
            
            .auth-image {
                order: initial;
            }
        }

        @media (max-width: 992px) {
            .auth-wrapper {
                grid-template-columns: 1fr;
                margin: 15px;
                max-width: none;
            }
            
            .auth-image {
                min-height: 250px;
                order: -1;
                padding: 20px;
            }
            
            .auth-form {
                padding: 50px 40px;
            }
            
            .login-visual {
                width: 220px;
                height: 220px;
            }
        }

        @media (max-width: 768px) {
            .auth-full-page {
                padding: 10px;
            }

            .auth-wrapper {
                margin: 5px;
                border-radius: 15px;
                min-height: auto;
            }
            
            .auth-image {
                min-height: 180px;
                padding: 15px;
                background: linear-gradient(135deg, #ffb400 0%, #e6a200 50%, #ffb400 100%);
            }
            
            .auth-form {
                padding: 30px 25px;
            }
            
            .text-center h1 {
                font-size: 1.5rem;
                margin-bottom: 10px;
            }

            .text-center p {
                font-size: 0.9rem;
                margin-bottom: 25px;
            }
            
            .login-visual {
                width: 160px;
                height: 160px;
            }

            .form-control {
                padding: 12px 16px;
                font-size: 16px; /* Prevents zoom on iOS */
            }

            .btn-primary {
                padding: 12px;
                font-size: 16px;
            }

            .btn-outline-primary {
                padding: 12px 16px;
            }
        }

        @media (max-width: 480px) {
            .auth-full-page {
                padding: 5px;
            }

            .auth-wrapper {
                margin: 0;
                border-radius: 10px;
            }
            
            .auth-image {
                min-height: 140px;
                padding: 10px;
            }
            
            .auth-form {
                padding: 25px 20px;
            }
            
            .text-center h1 {
                font-size: 1.3rem;
            }

            .text-center p {
                font-size: 0.85rem;
                margin-bottom: 20px;
            }
            
            .login-visual {
                width: 120px;
                height: 120px;
            }

            .form-control {
                padding: 10px 14px;
            }

            .btn-primary {
                padding: 10px;
            }

            .btn-outline-primary {
                padding: 10px 14px;
            }

            .form-label {
                font-size: 13px;
            }

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

        @media (max-width: 360px) {
            .auth-form {
                padding: 20px 15px;
            }

            .text-center h1 {
                font-size: 1.2rem;
            }

            .login-visual {
                width: 100px;
                height: 100px;
            }

            .auth-image {
                min-height: 120px;
            }
        }
    .custom-toast-container {
        position: fixed;
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9999;
        min-width: 300px;
        max-width: 90%;
        padding: 16px 20px;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        color: #fff;
        font-weight: 500;
        font-size: 16px;
        opacity: 0;
        transition: all 0.6s ease;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .custom-toast-success { background-color: #28a745; }
    .custom-toast-info { background-color: #17a2b8; }
    .custom-toast-error { background-color: #dc3545; }
    .custom-toast-warning { background-color: #ffc107; color: #000; }

    .custom-toast-success i,
    .custom-toast-info i,
    .custom-toast-error i {
        color: #fff;
    }
    .custom-toast-warning i {
        color: #000;
    }

    .show-toast {
        top: 50px;
        opacity: 1;
    }

    .toast-actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 10px;
    }

    .custom-toast-container i {
        font-size: 1.5rem;
    }