

        body {
            background-color: #f7fdf9;
            font-family: "Segoe UI", Arial, sans-serif;
        }
        .login-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .login-wrapper {
            display: flex;
            width: 100%;
            max-width: 1000px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 25px rgba(0,0,0,0.1);
            background: #fff;
        }
        /* Left side */
        .login-image {
            flex: 1;
            background: url('../images/login.png') no-repeat center center;
            background-size: cover;
            min-height: 500px;
        }
        /* Right side */
        .login-form {
            flex: 1;
            padding: 2.5rem 2rem;
        }
        .logo {
            max-height: 70px;
            margin-bottom: 15px;
        }
        h2 {
            color: #0078d7;
            font-weight: 700;
        }
        p {
            margin-bottom: 1.5rem;
        }
        .form-control {
            border: 1px solid #8bc34a;
            border-radius: 8px;
            padding: 10px 14px;
            font-size: 15px;
        }
        .form-control:focus {
            border-color: #8bc34a;
            box-shadow: 0 0 0 0.15rem rgba(139,195,74,0.25);
        }
        .btn-login {
            background-color: #0078d7;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            padding: 10px;
        }
        .btn-login:hover {
            background-color: #005bb5;
        }
        .extra-links {
            font-size: 0.9rem;
        }
        .extra-links a {
            color: #0078d7;
            text-decoration: none;
        }
        .extra-links a:hover {
            text-decoration: underline;
        }
