/* --- CSS Reset & Variables --- */
        :root {
            --primary-blue: #007bff; /* Bright blue from button */
            --dark-blue: #0a1f44;    /* Logo text color */
            --light-grey: #e1e1e1;   /* Borders */
            --bg-color: #f2f4f8;     /* Page background */
            --text-grey: #a0a0a0;    /* Placeholders/Helper text */
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        body {
            background-color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }

        /* --- Card Container --- */
        .login-card {
            background: white;
            width: 100%;
            max-width: 400px; /* Desktop width constraint */
            padding: 40px;
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        /* --- Logo Section --- */
       /* --- Logo Section (Updated for Image) --- */
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.logo-img {
    /* Adjust this width to match the visual size you want */
    max-width: 180px; 
    height: auto;
    display: block;
}

        /* --- Form Inputs --- */
        .input-group {
            display: flex;
            align-items: center;
            border: 1px solid var(--light-grey);
            border-radius: 6px;
            margin-bottom: 20px;
            padding: 0;
            background: white;
            transition: border-color 0.3s ease;
        }

        .input-group:focus-within {
            border-color: var(--primary-blue);
        }

        .input-icon {
            padding: 12px 15px;
            border-right: 1px solid var(--light-grey);
            color: var(--primary-blue);
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
        }

        .input-group input {
            border: none;
            outline: none;
            padding: 12px 15px;
            width: 100%;
            font-size: 16px;
            color: #333;
            border-radius: 0 6px 6px 0;
        }

        .input-group input::placeholder {
            color: #ccc;
        }

        /* --- Actions Row (Forgot Password + Sign In) --- */
        .actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            margin-top: 10px;
        }

        .forgot-pass {
            color: var(--primary-blue);
            text-decoration: none;
            font-size: 14px;
        }

        .forgot-pass:hover {
            text-decoration: underline;
        }

        .btn-signin {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: background 0.3s;
        }

        .btn-signin:hover {
            background-color: #0062cc;
        }

        /* --- Divider --- */
        .divider {
            display: flex;
            align-items: center;
            color: var(--text-grey);
            font-size: 13px;
            margin: 30px 0;
        }

        .divider::before,
        .divider::after {
            content: "";
            flex: 1;
            border-bottom: 1px dashed var(--light-grey);
        }

        .divider span {
            padding: 0 10px;
        }

        /* --- Sign Up Button --- */
        .btn-signup {
            display: block;
            width: 100%;
            padding: 12px;
            border: 2px solid var(--primary-blue);
            border-radius: 30px;
            background: white;
            color: var(--primary-blue);
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 14px;
            transition: all 0.3s;
        }

        .btn-signup:hover {
            background: #f0f8ff;
        }

        /* --- Responsiveness --- */
        /* For Tablets and Mobile */
        @media (max-width: 480px) {
            .login-card {
                padding: 30px 20px;
                box-shadow: none; /* Flatter look on mobile */
            }
            
            .actions {
                flex-direction: row; /* Keep them side by side or stack if needed */
            }
            
            /* If screen is very small, stack the actions */
            @media (max-width: 320px) {
                .actions {
                    flex-direction: column;
                    gap: 15px;
                }
                .btn-signin {
                    width: 100%;
                    justify-content: center;
                }
            }
        }