 :root {
            --saffron: #FF9933;
            --white: #FFFFFF;
            --green: #138808;
            --blue: #000080;
            --light-gray: #f8f9fa;
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light-gray);
            color: var(--blue);
            min-height: 100vh;
            /* width: 100vw; */
        }

        /*Navbar*/
        .dashboard-header {
            background-color: var(--white);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .dashboard-container {
            display: flex;
            gap: 30px;
            margin-top: 30px;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .dashboard-main {
            flex: 1;
        }

        .dashboard-header {
            display: flex;
            align-items: center;
            justify-content: space-around;
            margin-bottom: 30px;
        }

        .dashboard-title {
            font-family: 'Hind', sans-serif;
            font-size: 1.6rem;
            font-weight: 500;
        }

        .status-indicator {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .status-active {
            background-color: rgba(19, 136, 8, 0.15);
            color: var(--success);
        }

        .status-inactive {
            background-color: rgba(220, 53, 69, 0.15);
            color: var(--danger);
        }



        .logo img {
            height: 50px;
        }

        .logo span {
            font-family: 'Hind', sans-serif;
            font-size: 1.8rem;
            font-weight: 600;
            margin-left: 10px;
            color: var(--blue);
        }

        

        .logo span .highlight {
            color: var(--green);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin: 0 15px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--blue);
            font-weight: 500;
            position: relative;
            padding: 5px 0;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--saffron);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .nav-buttons {
            display: flex;
            gap: 15px;
        }


        .login-container {
            display: flex;
            /* width: 100%; */
            max-width: 1200px;
            margin: 0 auto;
            box-shadow: 0 10px 30px rgba(0, 0, 128, 0.15);
            border-radius: 12px;
            overflow: hidden;
            height: 85vh;
            margin: auto;
        }

        .login-image {
            flex: 1;
            background: linear-gradient(rgba(0, 0, 128, 0.8), rgba(19, 136, 8, 0.6)), url('http://static.photos/office/800x600/44') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }

        .image-content {
            color: white;
            text-align: center;
        }

        .image-content h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .image-content p {
            font-size: 1.1rem;
            max-width: 500px;
            opacity: 0.9;
        }

        .login-form {
            flex: 1;
            padding: 20px 50px;
            background: var(--white);
            display: flex;
            flex-direction: column;
            overflow: auto;

        }

        .login-header {
            margin-bottom: 40px;
        }

        .logo {
            display: flex;
            align-items: center;
            margin-top: 10px;
            margin-bottom: 20px;
        }

        .logo svg {
            width: 26px;
            height: 26px;
        }

        .logo span {
            font-size: 1.8rem;
            font-weight: 600;
            margin-left: 10px;
            color: var(--blue);
        }

        .login-title {
            font-size: 1.6rem;
            margin-bottom: 8px;
        }

        .login-subtitle {
            color: #666;
            font-size: .8rem;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #454546;
        }

        .form-input {
            width: 100%;
            padding: 14px 15px;
            border: 1px solid #cccccc;
            border-radius: 8px;
            background-color: #fafafa;
            font-size: 16px;
            transition: all 0.3s;
        }

        .form-input:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(0, 0, 128, 0.1);
            outline: none;
        }

        .forgot-password {
            text-align: right;
            margin-bottom: 8px;
        }

        .forgot-password a {
            color: var(--blue);
            text-decoration: none;
            font-size: 0.95rem;
        }

        .forgot-password a:hover {
            text-decoration: underline;
        }

        .btn {
            display: block;
            width: 100%;
            padding: 16px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
            text-align: center;
            transition: all 0.3s ease;
            border: none;
            font-size: 18px;
        }

        .login-btn {
            background-color: var(--green);
            color: white;
            margin-bottom: 25px;
        }

        .login-btn:hover {
            background-color: #0c6c04;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(19, 136, 8, 0.4);
        }

        .alternate-login {
            text-align: center;
            position: relative;
            margin: 30px 0;
            display: none;
        }

        .alternate-login::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: #e0e0e0;
            z-index: 1;
        }

        .alternate-login span {
            position: relative;
            z-index: 2;
            background: var(--white);
            padding: 0 20px;
            color: #666;
        }

        .social-login {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
            display: none;
        }

        .social-btn {
            border: 1px solid #ddd;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--white);
            transition: all 0.3s ease;
        }

        .social-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .register-link {
            text-align: center;
            color: #666;
        }

        .register-link a {
            color: var(--blue);
            text-decoration: none;
            font-weight: 600;
        }

        .register-link a:hover {
            text-decoration: underline;
        }

        footer {
            background: linear-gradient(to right, var(--blue), #00005a);
            color: var(--white);
            /* padding: 70px 30px; */
            /* padding-top: 70px;
            padding:0px 30px; */
            padding: 70px 0px 20px 20px;
            margin-top: 2.5%;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h3 {
            font-family: 'Hind', sans-serif;
            font-size: 1.4rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            height: 3px;
            width: 50px;
            background: var(--saffron);
            bottom: 0;
            left: 0;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 15px;
        }

        .footer-col ul li a {
            color: var(--light-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-col ul li a:hover {
            color: var(--saffron);
        }

        .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .contact-info i {
            margin-right: 15px;
            color: var(--saffron);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: var(--blue);
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--saffron);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-grid {
                grid-template-columns: 1fr;
            }

            .hero-image {
                order: -1;
                height: 350px;
                width: 100%;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            nav ul {
                display: none;
            }

        }

        /* Responsive */
        @media (max-width: 992px) {
            .login-container {
                flex-direction: column;
                height: auto;
                margin: 20px;
            }

            .login-image {
                padding: 50px;
            }
        }

        @media (max-width: 576px) {
            .login-form {
                padding: 40px 30px;
            }

            .login-image {
                padding: 40px 20px;
            }
        }

        /* Tighter mobile rules for small phones (<= 400px) */
        @media (max-width: 450px) {
            .login-container {
                max-width: 375px;
                /* keep it within typical small phone width */
                margin: 12px auto;
                flex-direction: column;
                height: auto;
                /* allow content to size naturally */
                box-shadow: none;
                border-radius: 10px;
            }

            /* Hide the decorative image on very small screens to save space */
            .login-image {
                /* display: none; */
            }

            .login-form {
                padding: 18px 16px;
            }

            .login-title {
                font-size: 1.4rem;
                margin-bottom: 6px;
            }

            .login-subtitle {
                font-size: 0.7rem;
            }

            .form-input {
                padding: 12px 10px;
                font-size: 15px;
            }

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

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }


        @media (max-width: 450px) {

            footer {
                padding: 20px 10px;
            }
        }

        .error {
            height: 6vh;
            width: auto;
            align-items: center;
            justify-content: center;
            color: rgb(197, 15, 15);
            display: flex;
            margin-bottom: 10px;
            border-radius: 6px;
        }