 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

        body {
            font-family: 'Poppins', sans-serif;
            background-image: url("/static/img/login.jpg");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .login-box {
            background: rgba(255, 255, 255, 0.9);
            padding: 2rem 2.5rem;
            border-radius: 12px;
            max-width: 350px;
            width: 100%;
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
            text-align: center;
            min-height: 450px;
        }
        .btn {
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .btn-primary {
            background-color: #002244;
            color: white;
        }

        .btn-primary:hover {
            background-color: #001a33;
        }

        .btn-secondary {
            background-color: #ccc;
            color: #333;
        }

        .btn-secondary:hover {
            background-color: #b3b3b3;
        }