        @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
        :root {
            --auth-bg: #1F2E31;
            --card-bg: #ffffff;
            --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            --input-border: #e3e6f0;
            --input-focus: #6CB049;
            --text-primary: #2c3e50;
            --text-secondary: #6c757d;
            --success-color: #10b981;
            --error-color: #ef4444;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        #loginPageBody{
            background: var(--auth-bg);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 1rem;
        }
         .auth-container {
            width: 100%;
            max-width: 430px;
        }

        /* Logo Section */
        .auth-logo {
            text-align: center;
            margin-bottom: 2rem;
        }

        .logo-icon {
            width: 64px;
            height: 64px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .logo-icon i {
            font-size: 1.75rem;
            color: white;
        }

        .auth-title {
            color: white;
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .auth-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            font-weight: 400;
        }

        /* Card Styles */
        .auth-card {
            background: var(--card-bg);
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: var(--card-shadow);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .card-header {
            text-align: center;
            margin-bottom: 2rem;
            border-radius: 10px;
            background-color: #1F2E31;
            padding: 1rem;
            color: #fff;
        }

        .card-header h2 {
            color: var(--text-primary);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .card-header p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            color: var(--text-primary);
            font-size: 15px;
            font-weight: normal;
            margin-bottom: 0.5rem;
            text-transform: capitalize;
            font-weight: bold;
        }

        .form-group input {
            width: 100%;
            padding: 0.6rem 1rem;
            border: 1px solid #D4D9CB;
            border-radius: 5px;
            font-size: 1rem;
            color: var(--text-primary);
            background: #ffffff;
            outline: none;
            
        }
        input:focus {
            border-color: #6CB049;
            box-shadow: 0 0 0 3px rgba(100, 195, 12, 0.1);
        }
        .form-group textarea {
            width: 100%;
            padding: 0.6rem 1rem;
            border: 1px solid #D4D9CB;
            border-radius: 5px;
            font-size: 1rem;
            color: var(--text-primary);
            background: #ffffff;
            outline: none;
        }
        textarea:focus {
            border-color: #6CB049;
            box-shadow: 0 0 0 3px rgba(100, 195, 12, 0.1);
        }
        .form-group select {
            width: 100%;
            padding: 0.6rem 1rem;
            border: 1px solid #D4D9CB;
            border-radius: 5px;
            font-size: 1rem;
            color: var(--text-primary);
            background: #ffffff;
            outline: none;
        }
        select:focus {
            border-color: #6CB049;
            box-shadow: 0 0 0 3px rgba(100, 195, 12, 0.1);
        }

        .form-input::placeholder {
            color: var(--text-secondary);
            font-weight: 400;
        }

        /* Button Styles */
        .btn-primary {
            width: 100%;
            padding: 0.875rem 1.5rem;
            background: #6CB049;
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;

            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-primary:hover {
            opacity: 0.9;
        }

        .btn-primary:active {
            opacity: 0.8;
        }

        /* Alert Styles */
        .alert {
            padding: 1rem 1.25rem;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .alert-error {
            background: rgba(239, 68, 68, 0.1);
            color: var(--error-color);
            border: 1px solid rgba(239, 68, 68, 0.2);
        }

        .alert-success {
            background: rgba(16, 185, 129, 0.1);
            color: var(--success-color);
            border: 1px solid rgba(16, 185, 129, 0.2);
        }

        /* Divider */
        .divider {
            display: flex;
            align-items: center;
            margin: 1.5rem 0;
            gap: 1rem;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--input-border);
        }

        .divider span {
            color: var(--text-secondary);
            font-size: 0.875rem;
            font-weight: 500;
        }

        /* Links */
        .auth-link {
            text-align: center;
            margin-top: 1.5rem;
        }

        .auth-link p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin: 0;
        }

        .auth-link a {
            color: var(--input-focus);
            text-decoration: none;
            font-weight: 600;
        }

        .auth-link a:hover {
            color: #5a67d8;
        }

        .back-link {
            text-align: center;
            margin-top: 2rem;
        }

        .back-link a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.875rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .back-link a:hover {
            color: white;
        }




        
        /* Responsive Design */
        @media (max-width: 480px) {
            .auth-card {
                padding: 2rem 1.5rem;
                border-radius: 20px;
            }
            
            .auth-title {
                font-size: 1.5rem;
            }
            
            body {
                padding: 1rem;
            }
        }

